duckdb 0.8.2-dev150.0 → 0.8.2-dev1559.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +15 -12
- package/binding.gyp.in +1 -1
- package/configure.py +1 -1
- package/duckdb_extension_config.cmake +10 -0
- package/package.json +1 -1
- package/src/duckdb/extension/icu/icu-dateadd.cpp +2 -2
- package/src/duckdb/extension/icu/icu-datefunc.cpp +1 -1
- package/src/duckdb/extension/icu/icu-datepart.cpp +2 -2
- package/src/duckdb/extension/icu/icu-datesub.cpp +2 -2
- package/src/duckdb/extension/icu/icu-datetrunc.cpp +1 -1
- package/src/duckdb/extension/icu/icu-list-range.cpp +1 -1
- package/src/duckdb/extension/icu/icu-makedate.cpp +7 -0
- package/src/duckdb/extension/icu/icu-strptime.cpp +4 -4
- package/src/duckdb/extension/icu/icu-table-range.cpp +5 -5
- package/src/duckdb/extension/icu/icu-timebucket.cpp +16 -16
- package/src/duckdb/extension/icu/icu-timezone.cpp +8 -8
- package/src/duckdb/extension/icu/icu_extension.cpp +3 -3
- package/src/duckdb/extension/json/include/json_common.hpp +47 -231
- package/src/duckdb/extension/json/include/json_executors.hpp +49 -13
- package/src/duckdb/extension/json/include/json_functions.hpp +2 -1
- package/src/duckdb/extension/json/json_common.cpp +272 -40
- package/src/duckdb/extension/json/json_functions/json_structure.cpp +1 -1
- package/src/duckdb/extension/json/json_functions/json_transform.cpp +17 -37
- package/src/duckdb/extension/json/json_functions/json_type.cpp +1 -1
- package/src/duckdb/extension/json/json_functions.cpp +24 -24
- package/src/duckdb/extension/json/json_scan.cpp +3 -6
- package/src/duckdb/extension/parquet/column_reader.cpp +19 -21
- package/src/duckdb/extension/parquet/column_writer.cpp +77 -61
- package/src/duckdb/extension/parquet/include/cast_column_reader.hpp +2 -2
- package/src/duckdb/extension/parquet/include/column_reader.hpp +14 -16
- package/src/duckdb/extension/parquet/include/column_writer.hpp +9 -7
- package/src/duckdb/extension/parquet/include/list_column_reader.hpp +2 -2
- package/src/duckdb/extension/parquet/include/parquet_dbp_decoder.hpp +3 -3
- package/src/duckdb/extension/parquet/include/parquet_decimal_utils.hpp +3 -3
- package/src/duckdb/extension/parquet/include/parquet_file_metadata_cache.hpp +2 -2
- package/src/duckdb/extension/parquet/include/parquet_statistics.hpp +2 -2
- package/src/duckdb/extension/parquet/include/parquet_support.hpp +9 -11
- package/src/duckdb/extension/parquet/include/parquet_writer.hpp +24 -5
- package/src/duckdb/extension/parquet/include/string_column_reader.hpp +1 -1
- package/src/duckdb/extension/parquet/include/struct_column_reader.hpp +2 -3
- package/src/duckdb/extension/parquet/include/zstd_file_system.hpp +2 -2
- package/src/duckdb/extension/parquet/parquet_extension.cpp +192 -20
- package/src/duckdb/extension/parquet/parquet_reader.cpp +6 -6
- package/src/duckdb/extension/parquet/parquet_statistics.cpp +7 -6
- package/src/duckdb/extension/parquet/parquet_writer.cpp +79 -16
- package/src/duckdb/extension/parquet/zstd_file_system.cpp +2 -2
- package/src/duckdb/src/catalog/catalog_entry/duck_table_entry.cpp +1 -1
- package/src/duckdb/src/catalog/catalog_search_path.cpp +5 -4
- package/src/duckdb/src/catalog/default/default_functions.cpp +16 -0
- package/src/duckdb/src/common/adbc/adbc.cpp +75 -10
- package/src/duckdb/src/common/adbc/driver_manager.cpp +6 -11
- package/src/duckdb/src/common/allocator.cpp +14 -2
- package/src/duckdb/src/common/arrow/arrow_appender.cpp +5 -11
- package/src/duckdb/src/common/assert.cpp +3 -0
- package/src/duckdb/src/common/enum_util.cpp +4619 -4446
- package/src/duckdb/src/common/enums/logical_operator_type.cpp +4 -0
- package/src/duckdb/src/common/enums/optimizer_type.cpp +2 -0
- package/src/duckdb/src/common/enums/physical_operator_type.cpp +4 -0
- package/src/duckdb/src/common/exception.cpp +2 -2
- package/src/duckdb/src/common/extra_type_info.cpp +506 -0
- package/src/duckdb/src/common/file_system.cpp +19 -0
- package/src/duckdb/src/common/hive_partitioning.cpp +10 -6
- package/src/duckdb/src/common/local_file_system.cpp +14 -14
- package/src/duckdb/src/common/multi_file_reader.cpp +184 -20
- package/src/duckdb/src/common/operator/cast_operators.cpp +35 -1
- package/src/duckdb/src/common/radix_partitioning.cpp +26 -8
- package/src/duckdb/src/common/re2_regex.cpp +1 -1
- package/src/duckdb/src/common/row_operations/row_external.cpp +1 -1
- package/src/duckdb/src/common/sort/merge_sorter.cpp +9 -16
- package/src/duckdb/src/common/sort/partition_state.cpp +44 -11
- package/src/duckdb/src/common/types/batched_data_collection.cpp +7 -2
- package/src/duckdb/src/common/types/bit.cpp +51 -0
- package/src/duckdb/src/common/types/column/column_data_allocator.cpp +9 -6
- package/src/duckdb/src/common/types/column/column_data_collection.cpp +17 -2
- package/src/duckdb/src/common/types/column/column_data_collection_segment.cpp +15 -6
- package/src/duckdb/src/common/types/column/partitioned_column_data.cpp +2 -2
- package/src/duckdb/src/common/types/data_chunk.cpp +2 -2
- package/src/duckdb/src/common/types/date.cpp +9 -0
- package/src/duckdb/src/common/types/list_segment.cpp +24 -74
- package/src/duckdb/src/common/types/row/partitioned_tuple_data.cpp +3 -9
- package/src/duckdb/src/common/types/row/tuple_data_collection.cpp +2 -0
- package/src/duckdb/src/common/types/row/tuple_data_scatter_gather.cpp +2 -2
- package/src/duckdb/src/common/types/uuid.cpp +2 -2
- package/src/duckdb/src/common/types/validity_mask.cpp +33 -0
- package/src/duckdb/src/common/types.cpp +8 -655
- package/src/duckdb/src/common/virtual_file_system.cpp +138 -1
- package/src/duckdb/src/core_functions/aggregate/holistic/reservoir_quantile.cpp +2 -0
- package/src/duckdb/src/core_functions/aggregate/nested/list.cpp +2 -2
- package/src/duckdb/src/core_functions/aggregate/regression/regr_avg.cpp +4 -4
- package/src/duckdb/src/core_functions/aggregate/regression/regr_intercept.cpp +4 -4
- package/src/duckdb/src/core_functions/aggregate/regression/regr_r2.cpp +5 -4
- package/src/duckdb/src/core_functions/aggregate/regression/regr_sxx_syy.cpp +8 -8
- package/src/duckdb/src/core_functions/aggregate/regression/regr_sxy.cpp +4 -3
- package/src/duckdb/src/core_functions/function_list.cpp +4 -2
- package/src/duckdb/src/core_functions/scalar/date/date_part.cpp +208 -42
- package/src/duckdb/src/core_functions/scalar/date/epoch.cpp +10 -24
- package/src/duckdb/src/core_functions/scalar/date/make_date.cpp +19 -4
- package/src/duckdb/src/core_functions/scalar/list/list_aggregates.cpp +4 -2
- package/src/duckdb/src/execution/aggregate_hashtable.cpp +34 -18
- package/src/duckdb/src/execution/expression_executor.cpp +1 -1
- package/src/duckdb/src/execution/index/art/art.cpp +149 -139
- package/src/duckdb/src/execution/index/art/fixed_size_allocator.cpp +1 -1
- package/src/duckdb/src/execution/index/art/iterator.cpp +129 -207
- package/src/duckdb/src/execution/index/art/leaf.cpp +8 -37
- package/src/duckdb/src/execution/index/art/node.cpp +113 -120
- package/src/duckdb/src/execution/index/art/node16.cpp +1 -10
- package/src/duckdb/src/execution/index/art/node256.cpp +1 -9
- package/src/duckdb/src/execution/index/art/node4.cpp +12 -13
- package/src/duckdb/src/execution/index/art/node48.cpp +1 -11
- package/src/duckdb/src/execution/index/art/prefix.cpp +228 -350
- package/src/duckdb/src/execution/join_hashtable.cpp +4 -4
- package/src/duckdb/src/execution/operator/aggregate/aggregate_object.cpp +1 -0
- package/src/duckdb/src/execution/operator/aggregate/physical_streaming_window.cpp +8 -3
- package/src/duckdb/src/execution/operator/aggregate/physical_ungrouped_aggregate.cpp +32 -22
- package/src/duckdb/src/execution/operator/aggregate/physical_window.cpp +512 -300
- package/src/duckdb/src/execution/operator/helper/physical_batch_collector.cpp +4 -3
- package/src/duckdb/src/execution/operator/helper/physical_limit.cpp +5 -5
- package/src/duckdb/src/execution/operator/join/physical_asof_join.cpp +414 -283
- package/src/duckdb/src/execution/operator/join/physical_comparison_join.cpp +1 -1
- package/src/duckdb/src/execution/operator/join/physical_hash_join.cpp +21 -10
- package/src/duckdb/src/execution/operator/join/physical_iejoin.cpp +28 -12
- package/src/duckdb/src/execution/operator/join/physical_join.cpp +1 -1
- package/src/duckdb/src/execution/operator/join/physical_piecewise_merge_join.cpp +23 -4
- package/src/duckdb/src/execution/operator/join/physical_range_join.cpp +41 -5
- package/src/duckdb/src/execution/operator/persistent/base_csv_reader.cpp +100 -13
- package/src/duckdb/src/execution/operator/persistent/csv_file_handle.cpp +1 -1
- package/src/duckdb/src/execution/operator/persistent/csv_reader_options.cpp +20 -0
- package/src/duckdb/src/execution/operator/persistent/csv_rejects_table.cpp +48 -0
- package/src/duckdb/src/execution/operator/persistent/parallel_csv_reader.cpp +2 -3
- package/src/duckdb/src/execution/operator/persistent/physical_batch_copy_to_file.cpp +6 -4
- package/src/duckdb/src/execution/operator/persistent/physical_fixed_batch_copy.cpp +3 -3
- package/src/duckdb/src/execution/operator/persistent/physical_insert.cpp +1 -1
- package/src/duckdb/src/execution/operator/projection/physical_pivot.cpp +2 -1
- package/src/duckdb/src/execution/operator/scan/physical_column_data_scan.cpp +19 -0
- package/src/duckdb/src/execution/operator/scan/physical_table_scan.cpp +7 -2
- package/src/duckdb/src/execution/operator/set/physical_cte.cpp +160 -0
- package/src/duckdb/src/execution/operator/set/physical_recursive_cte.cpp +15 -5
- package/src/duckdb/src/execution/partitionable_hashtable.cpp +41 -6
- package/src/duckdb/src/execution/perfect_aggregate_hashtable.cpp +30 -5
- package/src/duckdb/src/execution/physical_plan/plan_aggregate.cpp +43 -10
- package/src/duckdb/src/execution/physical_plan/plan_asof_join.cpp +13 -22
- package/src/duckdb/src/execution/physical_plan/plan_comparison_join.cpp +17 -13
- package/src/duckdb/src/execution/physical_plan/plan_cte.cpp +33 -0
- package/src/duckdb/src/execution/physical_plan/plan_get.cpp +2 -2
- package/src/duckdb/src/execution/physical_plan/plan_recursive_cte.cpp +25 -4
- package/src/duckdb/src/execution/physical_plan_generator.cpp +4 -0
- package/src/duckdb/src/execution/radix_partitioned_hashtable.cpp +290 -43
- package/src/duckdb/src/execution/window_segment_tree.cpp +286 -129
- package/src/duckdb/src/function/aggregate/sorted_aggregate_function.cpp +2 -1
- package/src/duckdb/src/function/cast/bit_cast.cpp +34 -2
- package/src/duckdb/src/function/cast/blob_cast.cpp +3 -0
- package/src/duckdb/src/function/cast/numeric_casts.cpp +2 -0
- package/src/duckdb/src/function/function.cpp +3 -1
- package/src/duckdb/src/function/scalar/compressed_materialization/compress_integral.cpp +212 -0
- package/src/duckdb/src/function/scalar/compressed_materialization/compress_string.cpp +249 -0
- package/src/duckdb/src/function/scalar/compressed_materialization_functions.cpp +29 -0
- package/src/duckdb/src/function/scalar/list/list_resize.cpp +162 -0
- package/src/duckdb/src/function/scalar/nested_functions.cpp +1 -0
- package/src/duckdb/src/function/scalar/string/like.cpp +12 -4
- package/src/duckdb/src/function/scalar/system/aggregate_export.cpp +12 -5
- package/src/duckdb/src/function/table/copy_csv.cpp +8 -1
- package/src/duckdb/src/function/table/read_csv.cpp +100 -17
- package/src/duckdb/src/function/table/table_scan.cpp +9 -0
- package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
- package/src/duckdb/src/include/duckdb/common/adbc/adbc.hpp +1 -0
- package/src/duckdb/src/include/duckdb/common/allocator.hpp +2 -0
- package/src/duckdb/src/include/duckdb/common/bswap.hpp +42 -0
- package/src/duckdb/src/include/duckdb/common/dl.hpp +3 -1
- package/src/duckdb/src/include/duckdb/common/enum_util.hpp +616 -584
- package/src/duckdb/src/include/duckdb/common/enums/cte_materialize.hpp +21 -0
- package/src/duckdb/src/include/duckdb/common/enums/joinref_type.hpp +2 -1
- package/src/duckdb/src/include/duckdb/common/enums/logical_operator_type.hpp +2 -0
- package/src/duckdb/src/include/duckdb/common/enums/optimizer_type.hpp +2 -0
- package/src/duckdb/src/include/duckdb/common/enums/physical_operator_type.hpp +2 -0
- package/src/duckdb/src/include/duckdb/common/extra_operator_info.hpp +27 -0
- package/src/duckdb/src/include/duckdb/common/extra_type_info.hpp +219 -0
- package/src/duckdb/src/include/duckdb/common/file_system.hpp +2 -0
- package/src/duckdb/src/include/duckdb/common/hive_partitioning.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/multi_file_reader.hpp +6 -4
- package/src/duckdb/src/include/duckdb/common/multi_file_reader_options.hpp +10 -42
- package/src/duckdb/src/include/duckdb/common/mutex.hpp +3 -0
- package/src/duckdb/src/include/duckdb/common/operator/cast_operators.hpp +43 -3
- package/src/duckdb/src/include/duckdb/common/operator/numeric_cast.hpp +10 -0
- package/src/duckdb/src/include/duckdb/common/radix.hpp +9 -20
- package/src/duckdb/src/include/duckdb/common/radix_partitioning.hpp +6 -21
- package/src/duckdb/src/include/duckdb/common/row_operations/row_operations.hpp +3 -3
- package/src/duckdb/src/include/duckdb/common/sort/partition_state.hpp +13 -0
- package/src/duckdb/src/include/duckdb/common/types/batched_data_collection.hpp +3 -1
- package/src/duckdb/src/include/duckdb/common/types/bit.hpp +81 -0
- package/src/duckdb/src/include/duckdb/common/types/column/column_data_allocator.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/types/column/column_data_collection.hpp +6 -1
- package/src/duckdb/src/include/duckdb/common/types/column/column_data_collection_segment.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/types/column/column_data_scan_states.hpp +3 -1
- package/src/duckdb/src/include/duckdb/common/types/data_chunk.hpp +1 -1
- package/src/duckdb/src/include/duckdb/common/types/date.hpp +7 -5
- package/src/duckdb/src/include/duckdb/common/types/list_segment.hpp +6 -8
- package/src/duckdb/src/include/duckdb/common/types/row/partitioned_tuple_data.hpp +0 -1
- package/src/duckdb/src/include/duckdb/common/types/row/tuple_data_collection.hpp +1 -0
- package/src/duckdb/src/include/duckdb/common/types/row/tuple_data_states.hpp +3 -0
- package/src/duckdb/src/include/duckdb/common/types/string_type.hpp +9 -0
- package/src/duckdb/src/include/duckdb/common/types.hpp +1 -15
- package/src/duckdb/src/include/duckdb/common/virtual_file_system.hpp +38 -97
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic/corr.hpp +4 -4
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic/covar.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/algebraic_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/distributive_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/holistic_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/nested_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/regression/regr_count.hpp +1 -0
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/regression/regr_slope.hpp +3 -3
- package/src/duckdb/src/include/duckdb/core_functions/aggregate/regression_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/bit_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/blob_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/date_functions.hpp +31 -11
- package/src/duckdb/src/include/duckdb/core_functions/scalar/enum_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/generic_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/list_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/map_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/math_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/operators_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/random_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/string_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/struct_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/core_functions/scalar/union_functions.hpp +3 -1
- package/src/duckdb/src/include/duckdb/execution/aggregate_hashtable.hpp +21 -3
- package/src/duckdb/src/include/duckdb/execution/executor.hpp +3 -0
- package/src/duckdb/src/include/duckdb/execution/index/art/art.hpp +4 -5
- package/src/duckdb/src/include/duckdb/execution/index/art/iterator.hpp +31 -27
- package/src/duckdb/src/include/duckdb/execution/index/art/leaf.hpp +6 -14
- package/src/duckdb/src/include/duckdb/execution/index/art/node.hpp +4 -10
- package/src/duckdb/src/include/duckdb/execution/index/art/node16.hpp +3 -6
- package/src/duckdb/src/include/duckdb/execution/index/art/node256.hpp +3 -6
- package/src/duckdb/src/include/duckdb/execution/index/art/node4.hpp +5 -8
- package/src/duckdb/src/include/duckdb/execution/index/art/node48.hpp +3 -6
- package/src/duckdb/src/include/duckdb/execution/index/art/prefix.hpp +63 -52
- package/src/duckdb/src/include/duckdb/execution/operator/join/physical_asof_join.hpp +2 -10
- package/src/duckdb/src/include/duckdb/execution/operator/join/physical_iejoin.hpp +1 -1
- package/src/duckdb/src/include/duckdb/execution/operator/join/physical_piecewise_merge_join.hpp +1 -1
- package/src/duckdb/src/include/duckdb/execution/operator/join/physical_range_join.hpp +12 -1
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/base_csv_reader.hpp +2 -2
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/csv_line_info.hpp +4 -3
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/csv_reader_options.hpp +8 -1
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/csv_rejects_table.hpp +36 -0
- package/src/duckdb/src/include/duckdb/execution/operator/persistent/parallel_csv_reader.hpp +1 -1
- package/src/duckdb/src/include/duckdb/execution/operator/scan/physical_column_data_scan.hpp +10 -0
- package/src/duckdb/src/include/duckdb/execution/operator/scan/physical_table_scan.hpp +5 -1
- package/src/duckdb/src/include/duckdb/execution/operator/set/physical_cte.hpp +62 -0
- package/src/duckdb/src/include/duckdb/execution/operator/set/physical_recursive_cte.hpp +8 -2
- package/src/duckdb/src/include/duckdb/execution/partitionable_hashtable.hpp +5 -1
- package/src/duckdb/src/include/duckdb/execution/physical_plan_generator.hpp +3 -0
- package/src/duckdb/src/include/duckdb/execution/radix_partitioned_hashtable.hpp +10 -3
- package/src/duckdb/src/include/duckdb/execution/window_segment_tree.hpp +51 -40
- package/src/duckdb/src/include/duckdb/function/aggregate_function.hpp +1 -1
- package/src/duckdb/src/include/duckdb/function/aggregate_state.hpp +2 -2
- package/src/duckdb/src/include/duckdb/function/built_in_functions.hpp +1 -0
- package/src/duckdb/src/include/duckdb/function/scalar/compressed_materialization_functions.hpp +49 -0
- package/src/duckdb/src/include/duckdb/function/scalar/list/contains_or_position.hpp +1 -1
- package/src/duckdb/src/include/duckdb/function/scalar/nested_functions.hpp +5 -0
- package/src/duckdb/src/include/duckdb/function/scalar/string_functions.hpp +2 -0
- package/src/duckdb/src/include/duckdb/main/client_config.hpp +5 -0
- package/src/duckdb/src/include/duckdb/main/config.hpp +2 -0
- package/src/duckdb/src/include/duckdb/main/connection.hpp +1 -2
- package/src/duckdb/src/include/duckdb/main/relation/cross_product_relation.hpp +4 -1
- package/src/duckdb/src/include/duckdb/main/relation/join_relation.hpp +5 -2
- package/src/duckdb/src/include/duckdb/main/relation.hpp +4 -2
- package/src/duckdb/src/include/duckdb/main/settings.hpp +39 -1
- package/src/duckdb/src/include/duckdb/optimizer/column_binding_replacer.hpp +47 -0
- package/src/duckdb/src/include/duckdb/optimizer/compressed_materialization.hpp +132 -0
- package/src/duckdb/src/include/duckdb/optimizer/deliminator.hpp +13 -16
- package/src/duckdb/src/include/duckdb/optimizer/filter_pushdown.hpp +3 -0
- package/src/duckdb/src/include/duckdb/optimizer/join_order/cardinality_estimator.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/join_order/estimated_properties.hpp +10 -1
- package/src/duckdb/src/include/duckdb/optimizer/join_order/join_order_optimizer.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/join_order/join_relation.hpp +1 -1
- package/src/duckdb/src/include/duckdb/optimizer/join_order/query_graph.hpp +3 -0
- package/src/duckdb/src/include/duckdb/optimizer/matcher/set_matcher.hpp +13 -0
- package/src/duckdb/src/include/duckdb/optimizer/optimizer.hpp +3 -0
- package/src/duckdb/src/include/duckdb/optimizer/remove_duplicate_groups.hpp +40 -0
- package/src/duckdb/src/include/duckdb/optimizer/statistics_propagator.hpp +11 -3
- package/src/duckdb/src/include/duckdb/optimizer/topn_optimizer.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parallel/pipeline.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parallel/task_scheduler.hpp +5 -0
- package/src/duckdb/src/include/duckdb/parser/common_table_expression_info.hpp +2 -0
- package/src/duckdb/src/include/duckdb/parser/expression/between_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/cast_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/collate_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/columnref_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/comparison_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/constant_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/default_expression.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/expression/function_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/lambda_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/positional_reference_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/expression/window_expression.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/query_node/cte_node.hpp +54 -0
- package/src/duckdb/src/include/duckdb/parser/query_node/list.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/query_node.hpp +2 -1
- package/src/duckdb/src/include/duckdb/parser/tableref/emptytableref.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/tableref/joinref.hpp +1 -1
- package/src/duckdb/src/include/duckdb/parser/tableref/subqueryref.hpp +3 -0
- package/src/duckdb/src/include/duckdb/parser/tokens.hpp +1 -0
- package/src/duckdb/src/include/duckdb/parser/transformer.hpp +15 -8
- package/src/duckdb/src/include/duckdb/planner/binder.hpp +12 -5
- package/src/duckdb/src/include/duckdb/planner/bound_tokens.hpp +1 -0
- package/src/duckdb/src/include/duckdb/planner/column_binding.hpp +4 -0
- package/src/duckdb/src/include/duckdb/planner/constraints/bound_unique_constraint.hpp +3 -3
- package/src/duckdb/src/include/duckdb/planner/expression_binder/lateral_binder.hpp +0 -2
- package/src/duckdb/src/include/duckdb/planner/logical_tokens.hpp +1 -0
- package/src/duckdb/src/include/duckdb/planner/operator/list.hpp +2 -1
- package/src/duckdb/src/include/duckdb/planner/operator/logical_comparison_join.hpp +5 -5
- package/src/duckdb/src/include/duckdb/planner/operator/logical_cteref.hpp +7 -2
- package/src/duckdb/src/include/duckdb/planner/operator/logical_dependent_join.hpp +43 -0
- package/src/duckdb/src/include/duckdb/planner/operator/logical_get.hpp +4 -0
- package/src/duckdb/src/include/duckdb/planner/operator/logical_materialized_cte.hpp +49 -0
- package/src/duckdb/src/include/duckdb/planner/operator/logical_recursive_cte.hpp +5 -4
- package/src/duckdb/src/include/duckdb/planner/query_node/bound_cte_node.hpp +44 -0
- package/src/duckdb/src/include/duckdb/planner/query_node/list.hpp +1 -0
- package/src/duckdb/src/include/duckdb/planner/subquery/flatten_dependent_join.hpp +2 -2
- package/src/duckdb/src/include/duckdb/planner/subquery/has_correlated_expressions.hpp +4 -1
- package/src/duckdb/src/include/duckdb/planner/subquery/recursive_dependent_join_planner.hpp +31 -0
- package/src/duckdb/src/include/duckdb/planner/subquery/rewrite_correlated_expressions.hpp +8 -2
- package/src/duckdb/src/include/duckdb/planner/tableref/bound_cteref.hpp +5 -2
- package/src/duckdb/src/include/duckdb/storage/arena_allocator.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/block_manager.hpp +3 -3
- package/src/duckdb/src/include/duckdb/storage/data_table.hpp +1 -1
- package/src/duckdb/src/include/duckdb/storage/object_cache.hpp +22 -0
- package/src/duckdb/src/include/duckdb/storage/single_file_block_manager.hpp +2 -0
- package/src/duckdb/src/include/duckdb/storage/statistics/string_stats.hpp +4 -0
- package/src/duckdb/src/include/duckdb/storage/table/chunk_info.hpp +3 -0
- package/src/duckdb/src/include/duckdb/storage/table/row_group.hpp +3 -2
- package/src/duckdb/src/include/duckdb/storage/table/row_group_collection.hpp +1 -3
- package/src/duckdb/src/include/duckdb/transaction/local_storage.hpp +2 -3
- package/src/duckdb/src/include/duckdb.h +28 -0
- package/src/duckdb/src/main/capi/arrow-c.cpp +155 -1
- package/src/duckdb/src/main/capi/duckdb_value-c.cpp +1 -1
- package/src/duckdb/src/main/config.cpp +4 -0
- package/src/duckdb/src/main/database.cpp +1 -1
- package/src/duckdb/src/main/extension/extension_helper.cpp +96 -89
- package/src/duckdb/src/main/extension/extension_install.cpp +6 -0
- package/src/duckdb/src/main/extension/extension_load.cpp +10 -1
- package/src/duckdb/src/main/relation/cross_product_relation.cpp +4 -3
- package/src/duckdb/src/main/relation/join_relation.cpp +5 -5
- package/src/duckdb/src/main/relation.cpp +6 -5
- package/src/duckdb/src/main/settings/settings.cpp +79 -18
- package/src/duckdb/src/optimizer/column_binding_replacer.cpp +43 -0
- package/src/duckdb/src/optimizer/column_lifetime_analyzer.cpp +1 -2
- package/src/duckdb/src/optimizer/compressed_materialization/compress_aggregate.cpp +140 -0
- package/src/duckdb/src/optimizer/compressed_materialization/compress_distinct.cpp +42 -0
- package/src/duckdb/src/optimizer/compressed_materialization/compress_order.cpp +65 -0
- package/src/duckdb/src/optimizer/compressed_materialization.cpp +478 -0
- package/src/duckdb/src/optimizer/deliminator.cpp +176 -321
- package/src/duckdb/src/optimizer/filter_pushdown.cpp +9 -0
- package/src/duckdb/src/optimizer/join_order/estimated_properties.cpp +7 -0
- package/src/duckdb/src/optimizer/join_order/join_node.cpp +2 -2
- package/src/duckdb/src/optimizer/join_order/join_order_optimizer.cpp +113 -82
- package/src/duckdb/src/optimizer/join_order/join_relation_set.cpp +2 -6
- package/src/duckdb/src/optimizer/join_order/query_graph.cpp +22 -14
- package/src/duckdb/src/optimizer/optimizer.cpp +51 -14
- package/src/duckdb/src/optimizer/pushdown/pushdown_cross_product.cpp +5 -5
- package/src/duckdb/src/optimizer/pushdown/pushdown_get.cpp +0 -1
- package/src/duckdb/src/optimizer/remove_duplicate_groups.cpp +127 -0
- package/src/duckdb/src/optimizer/remove_unused_columns.cpp +4 -0
- package/src/duckdb/src/optimizer/rule/regex_optimizations.cpp +154 -15
- package/src/duckdb/src/optimizer/statistics/operator/propagate_join.cpp +65 -8
- package/src/duckdb/src/optimizer/statistics/operator/propagate_order.cpp +1 -1
- package/src/duckdb/src/optimizer/statistics_propagator.cpp +7 -5
- package/src/duckdb/src/optimizer/topn_optimizer.cpp +20 -10
- package/src/duckdb/src/parallel/executor.cpp +15 -0
- package/src/duckdb/src/parallel/task_scheduler.cpp +11 -2
- package/src/duckdb/src/parser/common_table_expression_info.cpp +2 -0
- package/src/duckdb/src/parser/expression/between_expression.cpp +3 -15
- package/src/duckdb/src/parser/expression/case_expression.cpp +0 -13
- package/src/duckdb/src/parser/expression/cast_expression.cpp +3 -14
- package/src/duckdb/src/parser/expression/collate_expression.cpp +3 -13
- package/src/duckdb/src/parser/expression/columnref_expression.cpp +3 -12
- package/src/duckdb/src/parser/expression/comparison_expression.cpp +3 -13
- package/src/duckdb/src/parser/expression/conjunction_expression.cpp +0 -12
- package/src/duckdb/src/parser/expression/constant_expression.cpp +3 -11
- package/src/duckdb/src/parser/expression/default_expression.cpp +0 -4
- package/src/duckdb/src/parser/expression/function_expression.cpp +3 -32
- package/src/duckdb/src/parser/expression/lambda_expression.cpp +4 -14
- package/src/duckdb/src/parser/expression/operator_expression.cpp +0 -12
- package/src/duckdb/src/parser/expression/parameter_expression.cpp +0 -12
- package/src/duckdb/src/parser/expression/positional_reference_expression.cpp +4 -11
- package/src/duckdb/src/parser/expression/star_expression.cpp +0 -19
- package/src/duckdb/src/parser/expression/subquery_expression.cpp +0 -18
- package/src/duckdb/src/parser/expression/window_expression.cpp +3 -39
- package/src/duckdb/src/parser/parsed_expression.cpp +0 -70
- package/src/duckdb/src/parser/parsed_expression_iterator.cpp +7 -0
- package/src/duckdb/src/parser/parser.cpp +8 -2
- package/src/duckdb/src/parser/query_node/cte_node.cpp +58 -0
- package/src/duckdb/src/parser/query_node/recursive_cte_node.cpp +0 -19
- package/src/duckdb/src/parser/query_node/select_node.cpp +0 -29
- package/src/duckdb/src/parser/query_node/set_operation_node.cpp +0 -15
- package/src/duckdb/src/parser/query_node.cpp +15 -37
- package/src/duckdb/src/parser/result_modifier.cpp +0 -74
- package/src/duckdb/src/parser/tableref/basetableref.cpp +0 -19
- package/src/duckdb/src/parser/tableref/emptytableref.cpp +0 -4
- package/src/duckdb/src/parser/tableref/expressionlistref.cpp +0 -15
- package/src/duckdb/src/parser/tableref/joinref.cpp +3 -23
- package/src/duckdb/src/parser/tableref/pivotref.cpp +0 -23
- package/src/duckdb/src/parser/tableref/subqueryref.cpp +3 -13
- package/src/duckdb/src/parser/tableref/table_function.cpp +0 -15
- package/src/duckdb/src/parser/tableref.cpp +0 -44
- package/src/duckdb/src/parser/transform/expression/transform_constant.cpp +55 -3
- package/src/duckdb/src/parser/transform/expression/transform_expression.cpp +2 -0
- package/src/duckdb/src/parser/transform/expression/transform_multi_assign_reference.cpp +44 -0
- package/src/duckdb/src/parser/transform/helpers/transform_cte.cpp +19 -1
- package/src/duckdb/src/parser/transform/statement/transform_copy.cpp +13 -0
- package/src/duckdb/src/parser/transform/statement/transform_delete.cpp +6 -1
- package/src/duckdb/src/parser/transform/statement/transform_insert.cpp +6 -1
- package/src/duckdb/src/parser/transform/statement/transform_pivot_stmt.cpp +7 -2
- package/src/duckdb/src/parser/transform/statement/transform_pragma.cpp +14 -11
- package/src/duckdb/src/parser/transform/statement/transform_select_node.cpp +11 -2
- package/src/duckdb/src/parser/transform/statement/transform_update.cpp +6 -1
- package/src/duckdb/src/parser/transformer.cpp +15 -0
- package/src/duckdb/src/planner/binder/query_node/bind_cte_node.cpp +64 -0
- package/src/duckdb/src/planner/binder/query_node/plan_cte_node.cpp +26 -0
- package/src/duckdb/src/planner/binder/query_node/plan_recursive_cte_node.cpp +5 -5
- package/src/duckdb/src/planner/binder/query_node/plan_setop.cpp +4 -4
- package/src/duckdb/src/planner/binder/query_node/plan_subquery.cpp +32 -29
- package/src/duckdb/src/planner/binder/statement/bind_create_table.cpp +5 -4
- package/src/duckdb/src/planner/binder/tableref/bind_basetableref.cpp +11 -2
- package/src/duckdb/src/planner/binder/tableref/bind_joinref.cpp +32 -5
- package/src/duckdb/src/planner/binder/tableref/bind_pivot.cpp +116 -49
- package/src/duckdb/src/planner/binder/tableref/plan_cteref.cpp +1 -1
- package/src/duckdb/src/planner/binder/tableref/plan_joinref.cpp +61 -26
- package/src/duckdb/src/planner/binder/tableref/plan_subqueryref.cpp +3 -3
- package/src/duckdb/src/planner/binder.cpp +44 -31
- package/src/duckdb/src/planner/expression/bound_aggregate_expression.cpp +1 -1
- package/src/duckdb/src/planner/expression_binder/lateral_binder.cpp +4 -31
- package/src/duckdb/src/planner/expression_binder.cpp +3 -0
- package/src/duckdb/src/planner/expression_iterator.cpp +6 -0
- package/src/duckdb/src/planner/logical_operator.cpp +5 -0
- package/src/duckdb/src/planner/logical_operator_visitor.cpp +2 -0
- package/src/duckdb/src/planner/operator/logical_cteref.cpp +3 -1
- package/src/duckdb/src/planner/operator/logical_dependent_join.cpp +26 -0
- package/src/duckdb/src/planner/operator/logical_get.cpp +9 -4
- package/src/duckdb/src/planner/operator/logical_materialized_cte.cpp +21 -0
- package/src/duckdb/src/planner/subquery/flatten_dependent_join.cpp +90 -38
- package/src/duckdb/src/planner/subquery/has_correlated_expressions.cpp +22 -7
- package/src/duckdb/src/planner/subquery/rewrite_correlated_expressions.cpp +65 -7
- package/src/duckdb/src/storage/arena_allocator.cpp +1 -2
- package/src/duckdb/src/storage/buffer/block_manager.cpp +3 -0
- package/src/duckdb/src/storage/checkpoint_manager.cpp +3 -0
- package/src/duckdb/src/storage/compression/rle.cpp +0 -1
- package/src/duckdb/src/storage/data_table.cpp +1 -1
- package/src/duckdb/src/storage/local_storage.cpp +3 -3
- package/src/duckdb/src/storage/serialization/serialize_parsed_expression.cpp +340 -0
- package/src/duckdb/src/storage/serialization/serialize_query_node.cpp +122 -0
- package/src/duckdb/src/storage/serialization/serialize_result_modifier.cpp +86 -0
- package/src/duckdb/src/storage/serialization/serialize_tableref.cpp +166 -0
- package/src/duckdb/src/storage/serialization/serialize_types.cpp +127 -0
- package/src/duckdb/src/storage/single_file_block_manager.cpp +23 -0
- package/src/duckdb/src/storage/statistics/string_stats.cpp +21 -2
- package/src/duckdb/src/storage/storage_info.cpp +1 -1
- package/src/duckdb/src/storage/table/chunk_info.cpp +17 -0
- package/src/duckdb/src/storage/table/row_group.cpp +25 -9
- package/src/duckdb/src/storage/table/row_group_collection.cpp +19 -18
- package/src/duckdb/third_party/concurrentqueue/concurrentqueue.h +2 -2
- package/src/duckdb/third_party/concurrentqueue/lightweightsemaphore.h +76 -0
- package/src/duckdb/third_party/fast_float/fast_float/fast_float.h +2 -0
- package/src/duckdb/third_party/httplib/httplib.hpp +10 -1
- package/src/duckdb/third_party/libpg_query/include/nodes/parsenodes.hpp +9 -0
- package/src/duckdb/third_party/libpg_query/include/parser/gram.hpp +2 -1
- package/src/duckdb/third_party/libpg_query/src_backend_parser_gram.cpp +12487 -12331
- package/src/duckdb/ub_extension_icu_third_party_icu_i18n.cpp +6 -6
- package/src/duckdb/ub_src_common.cpp +2 -0
- package/src/duckdb/ub_src_execution_index_art.cpp +0 -2
- package/src/duckdb/ub_src_execution_operator_persistent.cpp +2 -0
- package/src/duckdb/ub_src_execution_operator_set.cpp +2 -0
- package/src/duckdb/ub_src_execution_physical_plan.cpp +2 -0
- package/src/duckdb/ub_src_function_scalar.cpp +2 -0
- package/src/duckdb/ub_src_function_scalar_compressed_materialization.cpp +4 -0
- package/src/duckdb/ub_src_function_scalar_list.cpp +2 -0
- package/src/duckdb/ub_src_optimizer.cpp +6 -0
- package/src/duckdb/ub_src_optimizer_compressed_materialization.cpp +6 -0
- package/src/duckdb/ub_src_optimizer_statistics_expression.cpp +0 -2
- package/src/duckdb/ub_src_parser_query_node.cpp +2 -0
- package/src/duckdb/ub_src_parser_transform_expression.cpp +2 -0
- package/src/duckdb/ub_src_planner_binder_query_node.cpp +4 -0
- package/src/duckdb/ub_src_planner_operator.cpp +4 -0
- package/src/duckdb/ub_src_storage_serialization.cpp +10 -0
- package/src/statement.cpp +10 -3
- package/test/test_all_types.test.ts +233 -0
- package/tsconfig.json +1 -0
- package/src/duckdb/src/execution/index/art/prefix_segment.cpp +0 -42
- package/src/duckdb/src/include/duckdb/execution/index/art/prefix_segment.hpp +0 -40
- package/src/duckdb/src/optimizer/statistics/expression/propagate_and_compress.cpp +0 -118
@@ -8,6 +8,7 @@
|
|
8
8
|
// You should move the enum to the duckdb namespace, manually write a specialization or add it to the blacklist
|
9
9
|
//-------------------------------------------------------------------------
|
10
10
|
|
11
|
+
|
11
12
|
#pragma once
|
12
13
|
|
13
14
|
#include <stdint.h>
|
@@ -16,943 +17,974 @@
|
|
16
17
|
namespace duckdb {
|
17
18
|
|
18
19
|
struct EnumUtil {
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
template <class T>
|
24
|
-
static T FromString(const string &value) {
|
25
|
-
return FromString<T>(value.c_str());
|
26
|
-
}
|
27
|
-
|
28
|
-
// Enum -> String
|
29
|
-
template <class T>
|
30
|
-
static const char *ToChars(T value) = delete;
|
31
|
-
|
32
|
-
template <class T>
|
33
|
-
static string ToString(T value) {
|
34
|
-
return string(ToChars<T>(value));
|
35
|
-
}
|
36
|
-
};
|
37
|
-
|
38
|
-
enum class TaskExecutionMode : uint8_t;
|
20
|
+
// String -> Enum
|
21
|
+
template <class T>
|
22
|
+
static T FromString(const char *value) = delete;
|
39
23
|
|
40
|
-
|
24
|
+
template <class T>
|
25
|
+
static T FromString(const string &value) { return FromString<T>(value.c_str()); }
|
41
26
|
|
42
|
-
|
27
|
+
// Enum -> String
|
28
|
+
template <class T>
|
29
|
+
static const char *ToChars(T value) = delete;
|
43
30
|
|
44
|
-
|
31
|
+
template <class T>
|
32
|
+
static string ToString(T value) { return string(ToChars<T>(value)); }
|
33
|
+
};
|
45
34
|
|
46
|
-
enum class
|
35
|
+
enum class AccessMode : uint8_t;
|
47
36
|
|
48
|
-
enum class
|
37
|
+
enum class AggregateHandling : uint8_t;
|
49
38
|
|
50
|
-
enum class
|
39
|
+
enum class AggregateOrderDependent : uint8_t;
|
51
40
|
|
52
41
|
enum class AggregateType : uint8_t;
|
53
42
|
|
54
|
-
enum class
|
43
|
+
enum class AlterScalarFunctionType : uint8_t;
|
55
44
|
|
56
|
-
enum class
|
45
|
+
enum class AlterTableFunctionType : uint8_t;
|
57
46
|
|
58
|
-
enum class
|
47
|
+
enum class AlterTableType : uint8_t;
|
59
48
|
|
60
|
-
enum class
|
49
|
+
enum class AlterType : uint8_t;
|
61
50
|
|
62
|
-
enum class
|
51
|
+
enum class AlterViewType : uint8_t;
|
63
52
|
|
64
|
-
enum class
|
53
|
+
enum class AppenderType : uint8_t;
|
65
54
|
|
66
|
-
enum class
|
55
|
+
enum class ArrowDateTimeType : uint8_t;
|
67
56
|
|
68
|
-
enum class
|
57
|
+
enum class ArrowVariableSizeType : uint8_t;
|
69
58
|
|
70
|
-
enum class
|
59
|
+
enum class BindingMode : uint8_t;
|
71
60
|
|
72
|
-
enum class
|
61
|
+
enum class BitpackingMode : uint8_t;
|
73
62
|
|
74
|
-
enum class
|
63
|
+
enum class BlockState : uint8_t;
|
75
64
|
|
76
|
-
enum class
|
65
|
+
enum class CAPIResultSetType : uint8_t;
|
77
66
|
|
78
|
-
enum class
|
67
|
+
enum class CTEMaterialize : uint8_t;
|
79
68
|
|
80
|
-
enum class
|
69
|
+
enum class CatalogType : uint8_t;
|
81
70
|
|
82
|
-
enum class
|
71
|
+
enum class CheckpointAbort : uint8_t;
|
83
72
|
|
84
|
-
enum class
|
73
|
+
enum class ChunkInfoType : uint8_t;
|
85
74
|
|
86
|
-
enum class
|
75
|
+
enum class ColumnDataAllocatorType : uint8_t;
|
87
76
|
|
88
|
-
enum class
|
77
|
+
enum class ColumnDataScanProperties : uint8_t;
|
89
78
|
|
90
|
-
enum class
|
79
|
+
enum class ColumnSegmentType : uint8_t;
|
91
80
|
|
92
|
-
enum class
|
81
|
+
enum class CompressedMaterializationDirection : uint8_t;
|
93
82
|
|
94
|
-
enum class
|
83
|
+
enum class CompressionType : uint8_t;
|
95
84
|
|
96
|
-
enum class
|
85
|
+
enum class ConflictManagerMode : uint8_t;
|
97
86
|
|
98
|
-
enum class
|
87
|
+
enum class ConstraintType : uint8_t;
|
99
88
|
|
100
|
-
enum class
|
89
|
+
enum class DataFileType : uint8_t;
|
101
90
|
|
102
|
-
enum class
|
91
|
+
enum class DatePartSpecifier : uint8_t;
|
103
92
|
|
104
|
-
enum class
|
93
|
+
enum class DebugInitialize : uint8_t;
|
105
94
|
|
106
|
-
enum class
|
95
|
+
enum class DefaultOrderByNullType : uint8_t;
|
107
96
|
|
108
|
-
enum class
|
97
|
+
enum class DistinctType : uint8_t;
|
109
98
|
|
110
|
-
enum class
|
99
|
+
enum class ErrorType : uint16_t;
|
111
100
|
|
112
|
-
enum class
|
101
|
+
enum class ExceptionFormatValueType : uint8_t;
|
113
102
|
|
114
|
-
enum class
|
103
|
+
enum class ExplainOutputType : uint8_t;
|
115
104
|
|
116
|
-
enum class
|
105
|
+
enum class ExplainType : uint8_t;
|
117
106
|
|
118
|
-
enum class
|
107
|
+
enum class ExpressionClass : uint8_t;
|
119
108
|
|
120
|
-
enum class
|
109
|
+
enum class ExpressionType : uint8_t;
|
121
110
|
|
122
|
-
enum class
|
111
|
+
enum class ExtensionLoadResult : uint8_t;
|
123
112
|
|
124
|
-
enum class
|
113
|
+
enum class ExtraTypeInfoType : uint8_t;
|
125
114
|
|
126
115
|
enum class FileBufferType : uint8_t;
|
127
116
|
|
128
|
-
enum class
|
129
|
-
|
130
|
-
enum class ExtraTypeInfoType : uint8_t;
|
117
|
+
enum class FileCompressionType : uint8_t;
|
131
118
|
|
132
|
-
enum class
|
119
|
+
enum class FileGlobOptions : uint8_t;
|
133
120
|
|
134
|
-
enum class
|
121
|
+
enum class FileLockType : uint8_t;
|
135
122
|
|
136
|
-
enum class
|
123
|
+
enum class FilterPropagateResult : uint8_t;
|
137
124
|
|
138
|
-
enum class
|
125
|
+
enum class ForeignKeyType : uint8_t;
|
139
126
|
|
140
|
-
enum class
|
127
|
+
enum class FunctionNullHandling : uint8_t;
|
141
128
|
|
142
|
-
enum class
|
129
|
+
enum class FunctionSideEffects : uint8_t;
|
143
130
|
|
144
|
-
enum class
|
131
|
+
enum class IndexType : uint8_t;
|
145
132
|
|
146
|
-
enum class
|
133
|
+
enum class InsertColumnOrder : uint8_t;
|
147
134
|
|
148
|
-
enum class
|
135
|
+
enum class InterruptMode : uint8_t;
|
149
136
|
|
150
|
-
enum class
|
137
|
+
enum class JoinRefType : uint8_t;
|
151
138
|
|
152
|
-
enum class
|
139
|
+
enum class JoinType : uint8_t;
|
153
140
|
|
154
|
-
enum class
|
141
|
+
enum class KeywordCategory : uint8_t;
|
155
142
|
|
156
|
-
enum class
|
143
|
+
enum class LogicalOperatorType : uint8_t;
|
157
144
|
|
158
|
-
enum class
|
145
|
+
enum class LogicalTypeId : uint8_t;
|
159
146
|
|
160
|
-
enum class
|
147
|
+
enum class LookupResultType : uint8_t;
|
161
148
|
|
162
|
-
enum class
|
149
|
+
enum class MacroType : uint8_t;
|
163
150
|
|
164
|
-
enum class
|
151
|
+
enum class MapInvalidReason : uint8_t;
|
165
152
|
|
166
|
-
enum class
|
153
|
+
enum class NType : uint8_t;
|
167
154
|
|
168
|
-
enum class
|
155
|
+
enum class NewLineIdentifier : uint8_t;
|
169
156
|
|
170
|
-
enum class
|
157
|
+
enum class OnConflictAction : uint8_t;
|
171
158
|
|
172
|
-
enum class
|
159
|
+
enum class OnCreateConflict : uint8_t;
|
173
160
|
|
174
|
-
enum class
|
161
|
+
enum class OnEntryNotFound : uint8_t;
|
175
162
|
|
176
|
-
enum class
|
163
|
+
enum class OperatorFinalizeResultType : uint8_t;
|
177
164
|
|
178
|
-
enum class
|
165
|
+
enum class OperatorResultType : uint8_t;
|
179
166
|
|
180
|
-
enum class
|
167
|
+
enum class OptimizerType : uint32_t;
|
181
168
|
|
182
|
-
enum class
|
169
|
+
enum class OrderByNullType : uint8_t;
|
183
170
|
|
184
171
|
enum class OrderPreservationType : uint8_t;
|
185
172
|
|
186
|
-
enum class
|
173
|
+
enum class OrderType : uint8_t;
|
187
174
|
|
188
|
-
enum class
|
175
|
+
enum class OutputStream : uint8_t;
|
189
176
|
|
190
|
-
enum class
|
177
|
+
enum class ParserExtensionResultType : uint8_t;
|
191
178
|
|
192
|
-
enum class
|
179
|
+
enum class ParserMode : uint8_t;
|
193
180
|
|
194
|
-
enum class
|
181
|
+
enum class PartitionSortStage : uint8_t;
|
195
182
|
|
196
|
-
enum class
|
183
|
+
enum class PartitionedColumnDataType : uint8_t;
|
197
184
|
|
198
|
-
enum class
|
185
|
+
enum class PartitionedTupleDataType : uint8_t;
|
199
186
|
|
200
187
|
enum class PendingExecutionResult : uint8_t;
|
201
188
|
|
202
|
-
enum class
|
189
|
+
enum class PhysicalOperatorType : uint8_t;
|
203
190
|
|
204
|
-
enum class
|
191
|
+
enum class PhysicalType : uint8_t;
|
205
192
|
|
206
|
-
enum class
|
193
|
+
enum class PragmaType : uint8_t;
|
207
194
|
|
208
|
-
enum class
|
195
|
+
enum class ProfilerPrintFormat : uint8_t;
|
209
196
|
|
210
|
-
enum class
|
197
|
+
enum class QueryNodeType : uint8_t;
|
211
198
|
|
212
|
-
enum class
|
199
|
+
enum class QueryResultType : uint8_t;
|
213
200
|
|
214
|
-
enum class
|
201
|
+
enum class RelationType : uint8_t;
|
215
202
|
|
216
|
-
enum class
|
203
|
+
enum class ResultModifierType : uint8_t;
|
217
204
|
|
218
|
-
enum class
|
205
|
+
enum class SampleMethod : uint8_t;
|
219
206
|
|
220
|
-
enum class
|
207
|
+
enum class SequenceInfo : uint8_t;
|
221
208
|
|
222
|
-
enum class
|
209
|
+
enum class SetOperationType : uint8_t;
|
223
210
|
|
224
|
-
enum class
|
211
|
+
enum class SetScope : uint8_t;
|
212
|
+
|
213
|
+
enum class SetType : uint8_t;
|
214
|
+
|
215
|
+
enum class SimplifiedTokenType : uint8_t;
|
225
216
|
|
226
217
|
enum class SinkFinalizeType : uint8_t;
|
227
218
|
|
228
|
-
enum class
|
219
|
+
enum class SinkResultType : uint8_t;
|
229
220
|
|
230
|
-
enum class
|
221
|
+
enum class SourceResultType : uint8_t;
|
231
222
|
|
232
|
-
enum class
|
223
|
+
enum class StatementReturnType : uint8_t;
|
233
224
|
|
234
|
-
enum class
|
225
|
+
enum class StatementType : uint8_t;
|
235
226
|
|
236
|
-
enum class
|
227
|
+
enum class StatisticsType : uint8_t;
|
237
228
|
|
238
|
-
enum class
|
229
|
+
enum class StatsInfo : uint8_t;
|
230
|
+
|
231
|
+
enum class StrTimeSpecifier : uint8_t;
|
232
|
+
|
233
|
+
enum class SubqueryType : uint8_t;
|
234
|
+
|
235
|
+
enum class TableColumnType : uint8_t;
|
236
|
+
|
237
|
+
enum class TableFilterType : uint8_t;
|
239
238
|
|
240
239
|
enum class TableReferenceType : uint8_t;
|
241
240
|
|
242
|
-
enum class
|
241
|
+
enum class TableScanType : uint8_t;
|
243
242
|
|
244
|
-
enum class
|
243
|
+
enum class TaskExecutionMode : uint8_t;
|
245
244
|
|
246
|
-
enum class
|
245
|
+
enum class TaskExecutionResult : uint8_t;
|
247
246
|
|
248
|
-
enum class
|
247
|
+
enum class TimestampCastResult : uint8_t;
|
249
248
|
|
250
|
-
enum class
|
249
|
+
enum class TransactionType : uint8_t;
|
251
250
|
|
252
|
-
enum class
|
251
|
+
enum class TupleDataPinProperties : uint8_t;
|
253
252
|
|
254
|
-
enum class
|
253
|
+
enum class UndoFlags : uint32_t;
|
255
254
|
|
256
|
-
enum class
|
255
|
+
enum class UnionInvalidReason : uint8_t;
|
257
256
|
|
258
|
-
enum class
|
257
|
+
enum class VectorAuxiliaryDataType : uint8_t;
|
259
258
|
|
260
|
-
enum class
|
259
|
+
enum class VectorBufferType : uint8_t;
|
261
260
|
|
262
|
-
enum class
|
261
|
+
enum class VectorType : uint8_t;
|
263
262
|
|
264
|
-
enum class
|
263
|
+
enum class VerificationType : uint8_t;
|
265
264
|
|
266
|
-
enum class
|
265
|
+
enum class VerifyExistenceType : uint8_t;
|
267
266
|
|
268
|
-
|
269
|
-
const char *EnumUtil::ToChars<TaskExecutionMode>(TaskExecutionMode value);
|
267
|
+
enum class WALType : uint8_t;
|
270
268
|
|
271
|
-
|
272
|
-
const char *EnumUtil::ToChars<TaskExecutionResult>(TaskExecutionResult value);
|
269
|
+
enum class WindowAggregationMode : uint32_t;
|
273
270
|
|
274
|
-
|
275
|
-
const char *EnumUtil::ToChars<InterruptMode>(InterruptMode value);
|
271
|
+
enum class WindowBoundary : uint8_t;
|
276
272
|
|
277
|
-
template <>
|
278
|
-
const char *EnumUtil::ToChars<DistinctType>(DistinctType value);
|
279
273
|
|
280
|
-
template
|
281
|
-
const char
|
274
|
+
template<>
|
275
|
+
const char* EnumUtil::ToChars<AccessMode>(AccessMode value);
|
282
276
|
|
283
|
-
template
|
284
|
-
const char
|
277
|
+
template<>
|
278
|
+
const char* EnumUtil::ToChars<AggregateHandling>(AggregateHandling value);
|
285
279
|
|
286
|
-
template
|
287
|
-
const char
|
280
|
+
template<>
|
281
|
+
const char* EnumUtil::ToChars<AggregateOrderDependent>(AggregateOrderDependent value);
|
288
282
|
|
289
|
-
template
|
290
|
-
const char
|
283
|
+
template<>
|
284
|
+
const char* EnumUtil::ToChars<AggregateType>(AggregateType value);
|
291
285
|
|
292
|
-
template
|
293
|
-
const char
|
286
|
+
template<>
|
287
|
+
const char* EnumUtil::ToChars<AlterScalarFunctionType>(AlterScalarFunctionType value);
|
294
288
|
|
295
|
-
template
|
296
|
-
const char
|
289
|
+
template<>
|
290
|
+
const char* EnumUtil::ToChars<AlterTableFunctionType>(AlterTableFunctionType value);
|
297
291
|
|
298
|
-
template
|
299
|
-
const char
|
292
|
+
template<>
|
293
|
+
const char* EnumUtil::ToChars<AlterTableType>(AlterTableType value);
|
300
294
|
|
301
|
-
template
|
302
|
-
const char
|
295
|
+
template<>
|
296
|
+
const char* EnumUtil::ToChars<AlterType>(AlterType value);
|
303
297
|
|
304
|
-
template
|
305
|
-
const char
|
298
|
+
template<>
|
299
|
+
const char* EnumUtil::ToChars<AlterViewType>(AlterViewType value);
|
306
300
|
|
307
|
-
template
|
308
|
-
const char
|
301
|
+
template<>
|
302
|
+
const char* EnumUtil::ToChars<AppenderType>(AppenderType value);
|
309
303
|
|
310
|
-
template
|
311
|
-
const char
|
304
|
+
template<>
|
305
|
+
const char* EnumUtil::ToChars<ArrowDateTimeType>(ArrowDateTimeType value);
|
312
306
|
|
313
|
-
template
|
314
|
-
const char
|
307
|
+
template<>
|
308
|
+
const char* EnumUtil::ToChars<ArrowVariableSizeType>(ArrowVariableSizeType value);
|
315
309
|
|
316
|
-
template
|
317
|
-
const char
|
310
|
+
template<>
|
311
|
+
const char* EnumUtil::ToChars<BindingMode>(BindingMode value);
|
318
312
|
|
319
|
-
template
|
320
|
-
const char
|
313
|
+
template<>
|
314
|
+
const char* EnumUtil::ToChars<BitpackingMode>(BitpackingMode value);
|
321
315
|
|
322
|
-
template
|
323
|
-
const char
|
316
|
+
template<>
|
317
|
+
const char* EnumUtil::ToChars<BlockState>(BlockState value);
|
324
318
|
|
325
|
-
template
|
326
|
-
const char
|
319
|
+
template<>
|
320
|
+
const char* EnumUtil::ToChars<CAPIResultSetType>(CAPIResultSetType value);
|
327
321
|
|
328
|
-
template
|
329
|
-
const char
|
322
|
+
template<>
|
323
|
+
const char* EnumUtil::ToChars<CTEMaterialize>(CTEMaterialize value);
|
330
324
|
|
331
|
-
template
|
332
|
-
const char
|
325
|
+
template<>
|
326
|
+
const char* EnumUtil::ToChars<CatalogType>(CatalogType value);
|
333
327
|
|
334
|
-
template
|
335
|
-
const char
|
328
|
+
template<>
|
329
|
+
const char* EnumUtil::ToChars<CheckpointAbort>(CheckpointAbort value);
|
336
330
|
|
337
|
-
template
|
338
|
-
const char
|
331
|
+
template<>
|
332
|
+
const char* EnumUtil::ToChars<ChunkInfoType>(ChunkInfoType value);
|
339
333
|
|
340
|
-
template
|
341
|
-
const char
|
334
|
+
template<>
|
335
|
+
const char* EnumUtil::ToChars<ColumnDataAllocatorType>(ColumnDataAllocatorType value);
|
342
336
|
|
343
|
-
template
|
344
|
-
const char
|
337
|
+
template<>
|
338
|
+
const char* EnumUtil::ToChars<ColumnDataScanProperties>(ColumnDataScanProperties value);
|
345
339
|
|
346
|
-
template
|
347
|
-
const char
|
340
|
+
template<>
|
341
|
+
const char* EnumUtil::ToChars<ColumnSegmentType>(ColumnSegmentType value);
|
348
342
|
|
349
|
-
template
|
350
|
-
const char
|
343
|
+
template<>
|
344
|
+
const char* EnumUtil::ToChars<CompressedMaterializationDirection>(CompressedMaterializationDirection value);
|
351
345
|
|
352
|
-
template
|
353
|
-
const char
|
346
|
+
template<>
|
347
|
+
const char* EnumUtil::ToChars<CompressionType>(CompressionType value);
|
354
348
|
|
355
|
-
template
|
356
|
-
const char
|
349
|
+
template<>
|
350
|
+
const char* EnumUtil::ToChars<ConflictManagerMode>(ConflictManagerMode value);
|
357
351
|
|
358
|
-
template
|
359
|
-
const char
|
352
|
+
template<>
|
353
|
+
const char* EnumUtil::ToChars<ConstraintType>(ConstraintType value);
|
360
354
|
|
361
|
-
template
|
362
|
-
const char
|
355
|
+
template<>
|
356
|
+
const char* EnumUtil::ToChars<DataFileType>(DataFileType value);
|
363
357
|
|
364
|
-
template
|
365
|
-
const char
|
358
|
+
template<>
|
359
|
+
const char* EnumUtil::ToChars<DatePartSpecifier>(DatePartSpecifier value);
|
366
360
|
|
367
|
-
template
|
368
|
-
const char
|
361
|
+
template<>
|
362
|
+
const char* EnumUtil::ToChars<DebugInitialize>(DebugInitialize value);
|
369
363
|
|
370
|
-
template
|
371
|
-
const char
|
364
|
+
template<>
|
365
|
+
const char* EnumUtil::ToChars<DefaultOrderByNullType>(DefaultOrderByNullType value);
|
372
366
|
|
373
|
-
template
|
374
|
-
const char
|
367
|
+
template<>
|
368
|
+
const char* EnumUtil::ToChars<DistinctType>(DistinctType value);
|
375
369
|
|
376
|
-
template
|
377
|
-
const char
|
370
|
+
template<>
|
371
|
+
const char* EnumUtil::ToChars<ErrorType>(ErrorType value);
|
378
372
|
|
379
|
-
template
|
380
|
-
const char
|
373
|
+
template<>
|
374
|
+
const char* EnumUtil::ToChars<ExceptionFormatValueType>(ExceptionFormatValueType value);
|
381
375
|
|
382
|
-
template
|
383
|
-
const char
|
376
|
+
template<>
|
377
|
+
const char* EnumUtil::ToChars<ExplainOutputType>(ExplainOutputType value);
|
384
378
|
|
385
|
-
template
|
386
|
-
const char
|
379
|
+
template<>
|
380
|
+
const char* EnumUtil::ToChars<ExplainType>(ExplainType value);
|
387
381
|
|
388
|
-
template
|
389
|
-
const char
|
382
|
+
template<>
|
383
|
+
const char* EnumUtil::ToChars<ExpressionClass>(ExpressionClass value);
|
390
384
|
|
391
|
-
template
|
392
|
-
const char
|
385
|
+
template<>
|
386
|
+
const char* EnumUtil::ToChars<ExpressionType>(ExpressionType value);
|
393
387
|
|
394
|
-
template
|
395
|
-
const char
|
388
|
+
template<>
|
389
|
+
const char* EnumUtil::ToChars<ExtensionLoadResult>(ExtensionLoadResult value);
|
396
390
|
|
397
|
-
template
|
398
|
-
const char
|
391
|
+
template<>
|
392
|
+
const char* EnumUtil::ToChars<ExtraTypeInfoType>(ExtraTypeInfoType value);
|
399
393
|
|
400
|
-
template
|
401
|
-
const char
|
394
|
+
template<>
|
395
|
+
const char* EnumUtil::ToChars<FileBufferType>(FileBufferType value);
|
402
396
|
|
403
|
-
template
|
404
|
-
const char
|
397
|
+
template<>
|
398
|
+
const char* EnumUtil::ToChars<FileCompressionType>(FileCompressionType value);
|
405
399
|
|
406
|
-
template
|
407
|
-
const char
|
400
|
+
template<>
|
401
|
+
const char* EnumUtil::ToChars<FileGlobOptions>(FileGlobOptions value);
|
408
402
|
|
409
|
-
template
|
410
|
-
const char
|
403
|
+
template<>
|
404
|
+
const char* EnumUtil::ToChars<FileLockType>(FileLockType value);
|
411
405
|
|
412
|
-
template
|
413
|
-
const char
|
406
|
+
template<>
|
407
|
+
const char* EnumUtil::ToChars<FilterPropagateResult>(FilterPropagateResult value);
|
414
408
|
|
415
|
-
template
|
416
|
-
const char
|
409
|
+
template<>
|
410
|
+
const char* EnumUtil::ToChars<ForeignKeyType>(ForeignKeyType value);
|
417
411
|
|
418
|
-
template
|
419
|
-
const char
|
412
|
+
template<>
|
413
|
+
const char* EnumUtil::ToChars<FunctionNullHandling>(FunctionNullHandling value);
|
420
414
|
|
421
|
-
template
|
422
|
-
const char
|
415
|
+
template<>
|
416
|
+
const char* EnumUtil::ToChars<FunctionSideEffects>(FunctionSideEffects value);
|
423
417
|
|
424
|
-
template
|
425
|
-
const char
|
418
|
+
template<>
|
419
|
+
const char* EnumUtil::ToChars<IndexType>(IndexType value);
|
426
420
|
|
427
|
-
template
|
428
|
-
const char
|
421
|
+
template<>
|
422
|
+
const char* EnumUtil::ToChars<InsertColumnOrder>(InsertColumnOrder value);
|
429
423
|
|
430
|
-
template
|
431
|
-
const char
|
424
|
+
template<>
|
425
|
+
const char* EnumUtil::ToChars<InterruptMode>(InterruptMode value);
|
432
426
|
|
433
|
-
template
|
434
|
-
const char
|
427
|
+
template<>
|
428
|
+
const char* EnumUtil::ToChars<JoinRefType>(JoinRefType value);
|
435
429
|
|
436
|
-
template
|
437
|
-
const char
|
430
|
+
template<>
|
431
|
+
const char* EnumUtil::ToChars<JoinType>(JoinType value);
|
438
432
|
|
439
|
-
template
|
440
|
-
const char
|
433
|
+
template<>
|
434
|
+
const char* EnumUtil::ToChars<KeywordCategory>(KeywordCategory value);
|
441
435
|
|
442
|
-
template
|
443
|
-
const char
|
436
|
+
template<>
|
437
|
+
const char* EnumUtil::ToChars<LogicalOperatorType>(LogicalOperatorType value);
|
444
438
|
|
445
|
-
template
|
446
|
-
const char
|
439
|
+
template<>
|
440
|
+
const char* EnumUtil::ToChars<LogicalTypeId>(LogicalTypeId value);
|
447
441
|
|
448
|
-
template
|
449
|
-
const char
|
442
|
+
template<>
|
443
|
+
const char* EnumUtil::ToChars<LookupResultType>(LookupResultType value);
|
450
444
|
|
451
|
-
template
|
452
|
-
const char
|
445
|
+
template<>
|
446
|
+
const char* EnumUtil::ToChars<MacroType>(MacroType value);
|
453
447
|
|
454
|
-
template
|
455
|
-
const char
|
448
|
+
template<>
|
449
|
+
const char* EnumUtil::ToChars<MapInvalidReason>(MapInvalidReason value);
|
456
450
|
|
457
|
-
template
|
458
|
-
const char
|
451
|
+
template<>
|
452
|
+
const char* EnumUtil::ToChars<NType>(NType value);
|
459
453
|
|
460
|
-
template
|
461
|
-
const char
|
454
|
+
template<>
|
455
|
+
const char* EnumUtil::ToChars<NewLineIdentifier>(NewLineIdentifier value);
|
462
456
|
|
463
|
-
template
|
464
|
-
const char
|
457
|
+
template<>
|
458
|
+
const char* EnumUtil::ToChars<OnConflictAction>(OnConflictAction value);
|
465
459
|
|
466
|
-
template
|
467
|
-
const char
|
460
|
+
template<>
|
461
|
+
const char* EnumUtil::ToChars<OnCreateConflict>(OnCreateConflict value);
|
468
462
|
|
469
|
-
template
|
470
|
-
const char
|
463
|
+
template<>
|
464
|
+
const char* EnumUtil::ToChars<OnEntryNotFound>(OnEntryNotFound value);
|
471
465
|
|
472
|
-
template
|
473
|
-
const char
|
466
|
+
template<>
|
467
|
+
const char* EnumUtil::ToChars<OperatorFinalizeResultType>(OperatorFinalizeResultType value);
|
474
468
|
|
475
|
-
template
|
476
|
-
const char
|
469
|
+
template<>
|
470
|
+
const char* EnumUtil::ToChars<OperatorResultType>(OperatorResultType value);
|
477
471
|
|
478
|
-
template
|
479
|
-
const char
|
472
|
+
template<>
|
473
|
+
const char* EnumUtil::ToChars<OptimizerType>(OptimizerType value);
|
480
474
|
|
481
|
-
template
|
482
|
-
const char
|
475
|
+
template<>
|
476
|
+
const char* EnumUtil::ToChars<OrderByNullType>(OrderByNullType value);
|
483
477
|
|
484
|
-
template
|
485
|
-
const char
|
478
|
+
template<>
|
479
|
+
const char* EnumUtil::ToChars<OrderPreservationType>(OrderPreservationType value);
|
486
480
|
|
487
|
-
template
|
488
|
-
const char
|
481
|
+
template<>
|
482
|
+
const char* EnumUtil::ToChars<OrderType>(OrderType value);
|
489
483
|
|
490
|
-
template
|
491
|
-
const char
|
484
|
+
template<>
|
485
|
+
const char* EnumUtil::ToChars<OutputStream>(OutputStream value);
|
492
486
|
|
493
|
-
template
|
494
|
-
const char
|
487
|
+
template<>
|
488
|
+
const char* EnumUtil::ToChars<ParserExtensionResultType>(ParserExtensionResultType value);
|
495
489
|
|
496
|
-
template
|
497
|
-
const char
|
490
|
+
template<>
|
491
|
+
const char* EnumUtil::ToChars<ParserMode>(ParserMode value);
|
498
492
|
|
499
|
-
template
|
500
|
-
const char
|
493
|
+
template<>
|
494
|
+
const char* EnumUtil::ToChars<PartitionSortStage>(PartitionSortStage value);
|
501
495
|
|
502
|
-
template
|
503
|
-
const char
|
496
|
+
template<>
|
497
|
+
const char* EnumUtil::ToChars<PartitionedColumnDataType>(PartitionedColumnDataType value);
|
504
498
|
|
505
|
-
template
|
506
|
-
const char
|
499
|
+
template<>
|
500
|
+
const char* EnumUtil::ToChars<PartitionedTupleDataType>(PartitionedTupleDataType value);
|
507
501
|
|
508
|
-
template
|
509
|
-
const char
|
502
|
+
template<>
|
503
|
+
const char* EnumUtil::ToChars<PendingExecutionResult>(PendingExecutionResult value);
|
510
504
|
|
511
|
-
template
|
512
|
-
const char
|
505
|
+
template<>
|
506
|
+
const char* EnumUtil::ToChars<PhysicalOperatorType>(PhysicalOperatorType value);
|
513
507
|
|
514
|
-
template
|
515
|
-
const char
|
508
|
+
template<>
|
509
|
+
const char* EnumUtil::ToChars<PhysicalType>(PhysicalType value);
|
516
510
|
|
517
|
-
template
|
518
|
-
const char
|
511
|
+
template<>
|
512
|
+
const char* EnumUtil::ToChars<PragmaType>(PragmaType value);
|
519
513
|
|
520
|
-
template
|
521
|
-
const char
|
514
|
+
template<>
|
515
|
+
const char* EnumUtil::ToChars<ProfilerPrintFormat>(ProfilerPrintFormat value);
|
522
516
|
|
523
|
-
template
|
524
|
-
const char
|
517
|
+
template<>
|
518
|
+
const char* EnumUtil::ToChars<QueryNodeType>(QueryNodeType value);
|
525
519
|
|
526
|
-
template
|
527
|
-
const char
|
520
|
+
template<>
|
521
|
+
const char* EnumUtil::ToChars<QueryResultType>(QueryResultType value);
|
528
522
|
|
529
|
-
template
|
530
|
-
const char
|
523
|
+
template<>
|
524
|
+
const char* EnumUtil::ToChars<RelationType>(RelationType value);
|
531
525
|
|
532
|
-
template
|
533
|
-
const char
|
526
|
+
template<>
|
527
|
+
const char* EnumUtil::ToChars<ResultModifierType>(ResultModifierType value);
|
534
528
|
|
535
|
-
template
|
536
|
-
const char
|
529
|
+
template<>
|
530
|
+
const char* EnumUtil::ToChars<SampleMethod>(SampleMethod value);
|
537
531
|
|
538
|
-
template
|
539
|
-
const char
|
532
|
+
template<>
|
533
|
+
const char* EnumUtil::ToChars<SequenceInfo>(SequenceInfo value);
|
540
534
|
|
541
|
-
template
|
542
|
-
const char
|
535
|
+
template<>
|
536
|
+
const char* EnumUtil::ToChars<SetOperationType>(SetOperationType value);
|
543
537
|
|
544
|
-
template
|
545
|
-
const char
|
538
|
+
template<>
|
539
|
+
const char* EnumUtil::ToChars<SetScope>(SetScope value);
|
546
540
|
|
547
|
-
template
|
548
|
-
const char
|
541
|
+
template<>
|
542
|
+
const char* EnumUtil::ToChars<SetType>(SetType value);
|
549
543
|
|
550
|
-
template
|
551
|
-
const char
|
544
|
+
template<>
|
545
|
+
const char* EnumUtil::ToChars<SimplifiedTokenType>(SimplifiedTokenType value);
|
552
546
|
|
553
|
-
template
|
554
|
-
const char
|
547
|
+
template<>
|
548
|
+
const char* EnumUtil::ToChars<SinkFinalizeType>(SinkFinalizeType value);
|
555
549
|
|
556
|
-
template
|
557
|
-
const char
|
550
|
+
template<>
|
551
|
+
const char* EnumUtil::ToChars<SinkResultType>(SinkResultType value);
|
558
552
|
|
559
|
-
template
|
560
|
-
const char
|
553
|
+
template<>
|
554
|
+
const char* EnumUtil::ToChars<SourceResultType>(SourceResultType value);
|
561
555
|
|
562
|
-
template
|
563
|
-
const char
|
556
|
+
template<>
|
557
|
+
const char* EnumUtil::ToChars<StatementReturnType>(StatementReturnType value);
|
564
558
|
|
565
|
-
template
|
566
|
-
const char
|
559
|
+
template<>
|
560
|
+
const char* EnumUtil::ToChars<StatementType>(StatementType value);
|
567
561
|
|
568
|
-
template
|
569
|
-
const char
|
562
|
+
template<>
|
563
|
+
const char* EnumUtil::ToChars<StatisticsType>(StatisticsType value);
|
570
564
|
|
571
|
-
template
|
572
|
-
const char
|
565
|
+
template<>
|
566
|
+
const char* EnumUtil::ToChars<StatsInfo>(StatsInfo value);
|
573
567
|
|
574
|
-
template
|
575
|
-
const char
|
568
|
+
template<>
|
569
|
+
const char* EnumUtil::ToChars<StrTimeSpecifier>(StrTimeSpecifier value);
|
576
570
|
|
577
|
-
template
|
578
|
-
const char
|
571
|
+
template<>
|
572
|
+
const char* EnumUtil::ToChars<SubqueryType>(SubqueryType value);
|
579
573
|
|
580
|
-
template
|
581
|
-
const char
|
574
|
+
template<>
|
575
|
+
const char* EnumUtil::ToChars<TableColumnType>(TableColumnType value);
|
582
576
|
|
583
|
-
template
|
584
|
-
const char
|
577
|
+
template<>
|
578
|
+
const char* EnumUtil::ToChars<TableFilterType>(TableFilterType value);
|
585
579
|
|
586
|
-
template
|
587
|
-
const char
|
580
|
+
template<>
|
581
|
+
const char* EnumUtil::ToChars<TableReferenceType>(TableReferenceType value);
|
588
582
|
|
589
|
-
template
|
590
|
-
const char
|
583
|
+
template<>
|
584
|
+
const char* EnumUtil::ToChars<TableScanType>(TableScanType value);
|
591
585
|
|
592
|
-
template
|
593
|
-
const char
|
586
|
+
template<>
|
587
|
+
const char* EnumUtil::ToChars<TaskExecutionMode>(TaskExecutionMode value);
|
594
588
|
|
595
|
-
template
|
596
|
-
const char
|
589
|
+
template<>
|
590
|
+
const char* EnumUtil::ToChars<TaskExecutionResult>(TaskExecutionResult value);
|
597
591
|
|
598
|
-
template
|
599
|
-
const char
|
592
|
+
template<>
|
593
|
+
const char* EnumUtil::ToChars<TimestampCastResult>(TimestampCastResult value);
|
600
594
|
|
601
|
-
template
|
602
|
-
const char
|
595
|
+
template<>
|
596
|
+
const char* EnumUtil::ToChars<TransactionType>(TransactionType value);
|
603
597
|
|
604
|
-
template
|
605
|
-
const char
|
598
|
+
template<>
|
599
|
+
const char* EnumUtil::ToChars<TupleDataPinProperties>(TupleDataPinProperties value);
|
606
600
|
|
607
|
-
template
|
608
|
-
const char
|
601
|
+
template<>
|
602
|
+
const char* EnumUtil::ToChars<UndoFlags>(UndoFlags value);
|
609
603
|
|
610
|
-
template
|
611
|
-
const char
|
604
|
+
template<>
|
605
|
+
const char* EnumUtil::ToChars<UnionInvalidReason>(UnionInvalidReason value);
|
612
606
|
|
613
|
-
template
|
614
|
-
|
607
|
+
template<>
|
608
|
+
const char* EnumUtil::ToChars<VectorAuxiliaryDataType>(VectorAuxiliaryDataType value);
|
615
609
|
|
616
|
-
template
|
617
|
-
|
610
|
+
template<>
|
611
|
+
const char* EnumUtil::ToChars<VectorBufferType>(VectorBufferType value);
|
618
612
|
|
619
|
-
template
|
620
|
-
|
613
|
+
template<>
|
614
|
+
const char* EnumUtil::ToChars<VectorType>(VectorType value);
|
621
615
|
|
622
|
-
template
|
623
|
-
|
616
|
+
template<>
|
617
|
+
const char* EnumUtil::ToChars<VerificationType>(VerificationType value);
|
624
618
|
|
625
|
-
template
|
626
|
-
|
619
|
+
template<>
|
620
|
+
const char* EnumUtil::ToChars<VerifyExistenceType>(VerifyExistenceType value);
|
627
621
|
|
628
|
-
template
|
629
|
-
|
622
|
+
template<>
|
623
|
+
const char* EnumUtil::ToChars<WALType>(WALType value);
|
630
624
|
|
631
|
-
template
|
632
|
-
|
625
|
+
template<>
|
626
|
+
const char* EnumUtil::ToChars<WindowAggregationMode>(WindowAggregationMode value);
|
633
627
|
|
634
|
-
template
|
635
|
-
|
628
|
+
template<>
|
629
|
+
const char* EnumUtil::ToChars<WindowBoundary>(WindowBoundary value);
|
636
630
|
|
637
|
-
template <>
|
638
|
-
AggregateOrderDependent EnumUtil::FromString<AggregateOrderDependent>(const char *value);
|
639
631
|
|
640
|
-
template
|
641
|
-
|
632
|
+
template<>
|
633
|
+
AccessMode EnumUtil::FromString<AccessMode>(const char *value);
|
642
634
|
|
643
|
-
template
|
644
|
-
|
635
|
+
template<>
|
636
|
+
AggregateHandling EnumUtil::FromString<AggregateHandling>(const char *value);
|
645
637
|
|
646
|
-
template
|
647
|
-
|
638
|
+
template<>
|
639
|
+
AggregateOrderDependent EnumUtil::FromString<AggregateOrderDependent>(const char *value);
|
648
640
|
|
649
|
-
template
|
650
|
-
|
641
|
+
template<>
|
642
|
+
AggregateType EnumUtil::FromString<AggregateType>(const char *value);
|
651
643
|
|
652
|
-
template
|
653
|
-
|
644
|
+
template<>
|
645
|
+
AlterScalarFunctionType EnumUtil::FromString<AlterScalarFunctionType>(const char *value);
|
654
646
|
|
655
|
-
template
|
656
|
-
|
647
|
+
template<>
|
648
|
+
AlterTableFunctionType EnumUtil::FromString<AlterTableFunctionType>(const char *value);
|
657
649
|
|
658
|
-
template
|
659
|
-
|
650
|
+
template<>
|
651
|
+
AlterTableType EnumUtil::FromString<AlterTableType>(const char *value);
|
660
652
|
|
661
|
-
template
|
662
|
-
|
653
|
+
template<>
|
654
|
+
AlterType EnumUtil::FromString<AlterType>(const char *value);
|
663
655
|
|
664
|
-
template
|
665
|
-
|
656
|
+
template<>
|
657
|
+
AlterViewType EnumUtil::FromString<AlterViewType>(const char *value);
|
666
658
|
|
667
|
-
template
|
668
|
-
|
659
|
+
template<>
|
660
|
+
AppenderType EnumUtil::FromString<AppenderType>(const char *value);
|
669
661
|
|
670
|
-
template
|
671
|
-
|
662
|
+
template<>
|
663
|
+
ArrowDateTimeType EnumUtil::FromString<ArrowDateTimeType>(const char *value);
|
672
664
|
|
673
|
-
template
|
674
|
-
|
665
|
+
template<>
|
666
|
+
ArrowVariableSizeType EnumUtil::FromString<ArrowVariableSizeType>(const char *value);
|
675
667
|
|
676
|
-
template
|
677
|
-
|
668
|
+
template<>
|
669
|
+
BindingMode EnumUtil::FromString<BindingMode>(const char *value);
|
678
670
|
|
679
|
-
template
|
680
|
-
|
671
|
+
template<>
|
672
|
+
BitpackingMode EnumUtil::FromString<BitpackingMode>(const char *value);
|
681
673
|
|
682
|
-
template
|
683
|
-
|
674
|
+
template<>
|
675
|
+
BlockState EnumUtil::FromString<BlockState>(const char *value);
|
684
676
|
|
685
|
-
template
|
686
|
-
|
677
|
+
template<>
|
678
|
+
CAPIResultSetType EnumUtil::FromString<CAPIResultSetType>(const char *value);
|
687
679
|
|
688
|
-
template
|
689
|
-
|
680
|
+
template<>
|
681
|
+
CTEMaterialize EnumUtil::FromString<CTEMaterialize>(const char *value);
|
690
682
|
|
691
|
-
template
|
692
|
-
|
683
|
+
template<>
|
684
|
+
CatalogType EnumUtil::FromString<CatalogType>(const char *value);
|
693
685
|
|
694
|
-
template
|
695
|
-
|
686
|
+
template<>
|
687
|
+
CheckpointAbort EnumUtil::FromString<CheckpointAbort>(const char *value);
|
696
688
|
|
697
|
-
template
|
698
|
-
|
689
|
+
template<>
|
690
|
+
ChunkInfoType EnumUtil::FromString<ChunkInfoType>(const char *value);
|
699
691
|
|
700
|
-
template
|
701
|
-
|
692
|
+
template<>
|
693
|
+
ColumnDataAllocatorType EnumUtil::FromString<ColumnDataAllocatorType>(const char *value);
|
702
694
|
|
703
|
-
template
|
704
|
-
|
695
|
+
template<>
|
696
|
+
ColumnDataScanProperties EnumUtil::FromString<ColumnDataScanProperties>(const char *value);
|
705
697
|
|
706
|
-
template
|
707
|
-
|
698
|
+
template<>
|
699
|
+
ColumnSegmentType EnumUtil::FromString<ColumnSegmentType>(const char *value);
|
708
700
|
|
709
|
-
template
|
710
|
-
|
701
|
+
template<>
|
702
|
+
CompressedMaterializationDirection EnumUtil::FromString<CompressedMaterializationDirection>(const char *value);
|
711
703
|
|
712
|
-
template
|
713
|
-
|
704
|
+
template<>
|
705
|
+
CompressionType EnumUtil::FromString<CompressionType>(const char *value);
|
714
706
|
|
715
|
-
template
|
716
|
-
|
707
|
+
template<>
|
708
|
+
ConflictManagerMode EnumUtil::FromString<ConflictManagerMode>(const char *value);
|
717
709
|
|
718
|
-
template
|
710
|
+
template<>
|
711
|
+
ConstraintType EnumUtil::FromString<ConstraintType>(const char *value);
|
712
|
+
|
713
|
+
template<>
|
719
714
|
DataFileType EnumUtil::FromString<DataFileType>(const char *value);
|
720
715
|
|
721
|
-
template
|
722
|
-
|
716
|
+
template<>
|
717
|
+
DatePartSpecifier EnumUtil::FromString<DatePartSpecifier>(const char *value);
|
723
718
|
|
724
|
-
template
|
725
|
-
|
719
|
+
template<>
|
720
|
+
DebugInitialize EnumUtil::FromString<DebugInitialize>(const char *value);
|
726
721
|
|
727
|
-
template
|
728
|
-
|
722
|
+
template<>
|
723
|
+
DefaultOrderByNullType EnumUtil::FromString<DefaultOrderByNullType>(const char *value);
|
729
724
|
|
730
|
-
template
|
731
|
-
|
725
|
+
template<>
|
726
|
+
DistinctType EnumUtil::FromString<DistinctType>(const char *value);
|
732
727
|
|
733
|
-
template
|
734
|
-
|
728
|
+
template<>
|
729
|
+
ErrorType EnumUtil::FromString<ErrorType>(const char *value);
|
735
730
|
|
736
|
-
template
|
737
|
-
|
731
|
+
template<>
|
732
|
+
ExceptionFormatValueType EnumUtil::FromString<ExceptionFormatValueType>(const char *value);
|
738
733
|
|
739
|
-
template
|
740
|
-
|
734
|
+
template<>
|
735
|
+
ExplainOutputType EnumUtil::FromString<ExplainOutputType>(const char *value);
|
741
736
|
|
742
|
-
template
|
743
|
-
|
737
|
+
template<>
|
738
|
+
ExplainType EnumUtil::FromString<ExplainType>(const char *value);
|
744
739
|
|
745
|
-
template
|
746
|
-
|
740
|
+
template<>
|
741
|
+
ExpressionClass EnumUtil::FromString<ExpressionClass>(const char *value);
|
747
742
|
|
748
|
-
template
|
749
|
-
|
743
|
+
template<>
|
744
|
+
ExpressionType EnumUtil::FromString<ExpressionType>(const char *value);
|
745
|
+
|
746
|
+
template<>
|
747
|
+
ExtensionLoadResult EnumUtil::FromString<ExtensionLoadResult>(const char *value);
|
750
748
|
|
751
|
-
template
|
749
|
+
template<>
|
752
750
|
ExtraTypeInfoType EnumUtil::FromString<ExtraTypeInfoType>(const char *value);
|
753
751
|
|
754
|
-
template
|
755
|
-
|
752
|
+
template<>
|
753
|
+
FileBufferType EnumUtil::FromString<FileBufferType>(const char *value);
|
756
754
|
|
757
|
-
template
|
758
|
-
|
755
|
+
template<>
|
756
|
+
FileCompressionType EnumUtil::FromString<FileCompressionType>(const char *value);
|
759
757
|
|
760
|
-
template
|
761
|
-
|
758
|
+
template<>
|
759
|
+
FileGlobOptions EnumUtil::FromString<FileGlobOptions>(const char *value);
|
762
760
|
|
763
|
-
template
|
764
|
-
|
761
|
+
template<>
|
762
|
+
FileLockType EnumUtil::FromString<FileLockType>(const char *value);
|
765
763
|
|
766
|
-
template
|
767
|
-
|
764
|
+
template<>
|
765
|
+
FilterPropagateResult EnumUtil::FromString<FilterPropagateResult>(const char *value);
|
768
766
|
|
769
|
-
template
|
770
|
-
|
767
|
+
template<>
|
768
|
+
ForeignKeyType EnumUtil::FromString<ForeignKeyType>(const char *value);
|
771
769
|
|
772
|
-
template
|
773
|
-
|
770
|
+
template<>
|
771
|
+
FunctionNullHandling EnumUtil::FromString<FunctionNullHandling>(const char *value);
|
774
772
|
|
775
|
-
template
|
776
|
-
|
773
|
+
template<>
|
774
|
+
FunctionSideEffects EnumUtil::FromString<FunctionSideEffects>(const char *value);
|
777
775
|
|
778
|
-
template
|
779
|
-
|
776
|
+
template<>
|
777
|
+
IndexType EnumUtil::FromString<IndexType>(const char *value);
|
780
778
|
|
781
|
-
template
|
782
|
-
|
779
|
+
template<>
|
780
|
+
InsertColumnOrder EnumUtil::FromString<InsertColumnOrder>(const char *value);
|
783
781
|
|
784
|
-
template
|
785
|
-
|
782
|
+
template<>
|
783
|
+
InterruptMode EnumUtil::FromString<InterruptMode>(const char *value);
|
786
784
|
|
787
|
-
template
|
788
|
-
|
785
|
+
template<>
|
786
|
+
JoinRefType EnumUtil::FromString<JoinRefType>(const char *value);
|
789
787
|
|
790
|
-
template
|
791
|
-
|
788
|
+
template<>
|
789
|
+
JoinType EnumUtil::FromString<JoinType>(const char *value);
|
792
790
|
|
793
|
-
template
|
794
|
-
|
791
|
+
template<>
|
792
|
+
KeywordCategory EnumUtil::FromString<KeywordCategory>(const char *value);
|
795
793
|
|
796
|
-
template
|
797
|
-
|
794
|
+
template<>
|
795
|
+
LogicalOperatorType EnumUtil::FromString<LogicalOperatorType>(const char *value);
|
798
796
|
|
799
|
-
template
|
800
|
-
|
797
|
+
template<>
|
798
|
+
LogicalTypeId EnumUtil::FromString<LogicalTypeId>(const char *value);
|
801
799
|
|
802
|
-
template
|
803
|
-
|
800
|
+
template<>
|
801
|
+
LookupResultType EnumUtil::FromString<LookupResultType>(const char *value);
|
804
802
|
|
805
|
-
template
|
806
|
-
|
803
|
+
template<>
|
804
|
+
MacroType EnumUtil::FromString<MacroType>(const char *value);
|
807
805
|
|
808
|
-
template
|
809
|
-
|
806
|
+
template<>
|
807
|
+
MapInvalidReason EnumUtil::FromString<MapInvalidReason>(const char *value);
|
810
808
|
|
811
|
-
template
|
812
|
-
|
809
|
+
template<>
|
810
|
+
NType EnumUtil::FromString<NType>(const char *value);
|
813
811
|
|
814
|
-
template
|
815
|
-
|
812
|
+
template<>
|
813
|
+
NewLineIdentifier EnumUtil::FromString<NewLineIdentifier>(const char *value);
|
816
814
|
|
817
|
-
template
|
818
|
-
|
815
|
+
template<>
|
816
|
+
OnConflictAction EnumUtil::FromString<OnConflictAction>(const char *value);
|
819
817
|
|
820
|
-
template
|
821
|
-
|
818
|
+
template<>
|
819
|
+
OnCreateConflict EnumUtil::FromString<OnCreateConflict>(const char *value);
|
822
820
|
|
823
|
-
template
|
824
|
-
|
821
|
+
template<>
|
822
|
+
OnEntryNotFound EnumUtil::FromString<OnEntryNotFound>(const char *value);
|
825
823
|
|
826
|
-
template
|
827
|
-
|
824
|
+
template<>
|
825
|
+
OperatorFinalizeResultType EnumUtil::FromString<OperatorFinalizeResultType>(const char *value);
|
828
826
|
|
829
|
-
template
|
830
|
-
|
827
|
+
template<>
|
828
|
+
OperatorResultType EnumUtil::FromString<OperatorResultType>(const char *value);
|
829
|
+
|
830
|
+
template<>
|
831
|
+
OptimizerType EnumUtil::FromString<OptimizerType>(const char *value);
|
831
832
|
|
832
|
-
template
|
833
|
+
template<>
|
834
|
+
OrderByNullType EnumUtil::FromString<OrderByNullType>(const char *value);
|
835
|
+
|
836
|
+
template<>
|
833
837
|
OrderPreservationType EnumUtil::FromString<OrderPreservationType>(const char *value);
|
834
838
|
|
835
|
-
template
|
836
|
-
|
839
|
+
template<>
|
840
|
+
OrderType EnumUtil::FromString<OrderType>(const char *value);
|
837
841
|
|
838
|
-
template
|
839
|
-
|
842
|
+
template<>
|
843
|
+
OutputStream EnumUtil::FromString<OutputStream>(const char *value);
|
840
844
|
|
841
|
-
template
|
842
|
-
|
845
|
+
template<>
|
846
|
+
ParserExtensionResultType EnumUtil::FromString<ParserExtensionResultType>(const char *value);
|
843
847
|
|
844
|
-
template
|
845
|
-
|
848
|
+
template<>
|
849
|
+
ParserMode EnumUtil::FromString<ParserMode>(const char *value);
|
846
850
|
|
847
|
-
template
|
848
|
-
|
851
|
+
template<>
|
852
|
+
PartitionSortStage EnumUtil::FromString<PartitionSortStage>(const char *value);
|
849
853
|
|
850
|
-
template
|
851
|
-
|
854
|
+
template<>
|
855
|
+
PartitionedColumnDataType EnumUtil::FromString<PartitionedColumnDataType>(const char *value);
|
852
856
|
|
853
|
-
template
|
854
|
-
|
857
|
+
template<>
|
858
|
+
PartitionedTupleDataType EnumUtil::FromString<PartitionedTupleDataType>(const char *value);
|
855
859
|
|
856
|
-
template
|
860
|
+
template<>
|
857
861
|
PendingExecutionResult EnumUtil::FromString<PendingExecutionResult>(const char *value);
|
858
862
|
|
859
|
-
template
|
860
|
-
|
863
|
+
template<>
|
864
|
+
PhysicalOperatorType EnumUtil::FromString<PhysicalOperatorType>(const char *value);
|
861
865
|
|
862
|
-
template
|
863
|
-
|
866
|
+
template<>
|
867
|
+
PhysicalType EnumUtil::FromString<PhysicalType>(const char *value);
|
864
868
|
|
865
|
-
template
|
866
|
-
|
869
|
+
template<>
|
870
|
+
PragmaType EnumUtil::FromString<PragmaType>(const char *value);
|
867
871
|
|
868
|
-
template
|
869
|
-
|
872
|
+
template<>
|
873
|
+
ProfilerPrintFormat EnumUtil::FromString<ProfilerPrintFormat>(const char *value);
|
870
874
|
|
871
|
-
template
|
872
|
-
|
875
|
+
template<>
|
876
|
+
QueryNodeType EnumUtil::FromString<QueryNodeType>(const char *value);
|
873
877
|
|
874
|
-
template
|
875
|
-
|
878
|
+
template<>
|
879
|
+
QueryResultType EnumUtil::FromString<QueryResultType>(const char *value);
|
876
880
|
|
877
|
-
template
|
878
|
-
|
881
|
+
template<>
|
882
|
+
RelationType EnumUtil::FromString<RelationType>(const char *value);
|
879
883
|
|
880
|
-
template
|
881
|
-
|
884
|
+
template<>
|
885
|
+
ResultModifierType EnumUtil::FromString<ResultModifierType>(const char *value);
|
882
886
|
|
883
|
-
template
|
884
|
-
|
887
|
+
template<>
|
888
|
+
SampleMethod EnumUtil::FromString<SampleMethod>(const char *value);
|
885
889
|
|
886
|
-
template
|
887
|
-
|
890
|
+
template<>
|
891
|
+
SequenceInfo EnumUtil::FromString<SequenceInfo>(const char *value);
|
888
892
|
|
889
|
-
template
|
890
|
-
|
893
|
+
template<>
|
894
|
+
SetOperationType EnumUtil::FromString<SetOperationType>(const char *value);
|
891
895
|
|
892
|
-
template
|
893
|
-
|
896
|
+
template<>
|
897
|
+
SetScope EnumUtil::FromString<SetScope>(const char *value);
|
894
898
|
|
895
|
-
template
|
899
|
+
template<>
|
900
|
+
SetType EnumUtil::FromString<SetType>(const char *value);
|
901
|
+
|
902
|
+
template<>
|
903
|
+
SimplifiedTokenType EnumUtil::FromString<SimplifiedTokenType>(const char *value);
|
904
|
+
|
905
|
+
template<>
|
896
906
|
SinkFinalizeType EnumUtil::FromString<SinkFinalizeType>(const char *value);
|
897
907
|
|
898
|
-
template
|
899
|
-
|
908
|
+
template<>
|
909
|
+
SinkResultType EnumUtil::FromString<SinkResultType>(const char *value);
|
900
910
|
|
901
|
-
template
|
902
|
-
|
911
|
+
template<>
|
912
|
+
SourceResultType EnumUtil::FromString<SourceResultType>(const char *value);
|
903
913
|
|
904
|
-
template
|
905
|
-
|
914
|
+
template<>
|
915
|
+
StatementReturnType EnumUtil::FromString<StatementReturnType>(const char *value);
|
906
916
|
|
907
|
-
template
|
908
|
-
|
917
|
+
template<>
|
918
|
+
StatementType EnumUtil::FromString<StatementType>(const char *value);
|
909
919
|
|
910
|
-
template
|
911
|
-
|
920
|
+
template<>
|
921
|
+
StatisticsType EnumUtil::FromString<StatisticsType>(const char *value);
|
912
922
|
|
913
|
-
template
|
914
|
-
|
923
|
+
template<>
|
924
|
+
StatsInfo EnumUtil::FromString<StatsInfo>(const char *value);
|
925
|
+
|
926
|
+
template<>
|
927
|
+
StrTimeSpecifier EnumUtil::FromString<StrTimeSpecifier>(const char *value);
|
928
|
+
|
929
|
+
template<>
|
930
|
+
SubqueryType EnumUtil::FromString<SubqueryType>(const char *value);
|
931
|
+
|
932
|
+
template<>
|
933
|
+
TableColumnType EnumUtil::FromString<TableColumnType>(const char *value);
|
915
934
|
|
916
|
-
template
|
935
|
+
template<>
|
936
|
+
TableFilterType EnumUtil::FromString<TableFilterType>(const char *value);
|
937
|
+
|
938
|
+
template<>
|
917
939
|
TableReferenceType EnumUtil::FromString<TableReferenceType>(const char *value);
|
918
940
|
|
919
|
-
template
|
920
|
-
|
941
|
+
template<>
|
942
|
+
TableScanType EnumUtil::FromString<TableScanType>(const char *value);
|
921
943
|
|
922
|
-
template
|
923
|
-
|
944
|
+
template<>
|
945
|
+
TaskExecutionMode EnumUtil::FromString<TaskExecutionMode>(const char *value);
|
924
946
|
|
925
|
-
template
|
926
|
-
|
947
|
+
template<>
|
948
|
+
TaskExecutionResult EnumUtil::FromString<TaskExecutionResult>(const char *value);
|
927
949
|
|
928
|
-
template
|
929
|
-
|
950
|
+
template<>
|
951
|
+
TimestampCastResult EnumUtil::FromString<TimestampCastResult>(const char *value);
|
930
952
|
|
931
|
-
template
|
932
|
-
|
953
|
+
template<>
|
954
|
+
TransactionType EnumUtil::FromString<TransactionType>(const char *value);
|
933
955
|
|
934
|
-
template
|
935
|
-
|
956
|
+
template<>
|
957
|
+
TupleDataPinProperties EnumUtil::FromString<TupleDataPinProperties>(const char *value);
|
936
958
|
|
937
|
-
template
|
938
|
-
|
959
|
+
template<>
|
960
|
+
UndoFlags EnumUtil::FromString<UndoFlags>(const char *value);
|
939
961
|
|
940
|
-
template
|
941
|
-
|
962
|
+
template<>
|
963
|
+
UnionInvalidReason EnumUtil::FromString<UnionInvalidReason>(const char *value);
|
942
964
|
|
943
|
-
template
|
944
|
-
|
965
|
+
template<>
|
966
|
+
VectorAuxiliaryDataType EnumUtil::FromString<VectorAuxiliaryDataType>(const char *value);
|
945
967
|
|
946
|
-
template
|
947
|
-
|
968
|
+
template<>
|
969
|
+
VectorBufferType EnumUtil::FromString<VectorBufferType>(const char *value);
|
948
970
|
|
949
|
-
template
|
950
|
-
|
971
|
+
template<>
|
972
|
+
VectorType EnumUtil::FromString<VectorType>(const char *value);
|
951
973
|
|
952
|
-
template
|
953
|
-
|
974
|
+
template<>
|
975
|
+
VerificationType EnumUtil::FromString<VerificationType>(const char *value);
|
976
|
+
|
977
|
+
template<>
|
978
|
+
VerifyExistenceType EnumUtil::FromString<VerifyExistenceType>(const char *value);
|
979
|
+
|
980
|
+
template<>
|
981
|
+
WALType EnumUtil::FromString<WALType>(const char *value);
|
982
|
+
|
983
|
+
template<>
|
984
|
+
WindowAggregationMode EnumUtil::FromString<WindowAggregationMode>(const char *value);
|
985
|
+
|
986
|
+
template<>
|
987
|
+
WindowBoundary EnumUtil::FromString<WindowBoundary>(const char *value);
|
954
988
|
|
955
|
-
template <>
|
956
|
-
CAPIResultSetType EnumUtil::FromString<CAPIResultSetType>(const char *value);
|
957
989
|
|
958
|
-
}
|
990
|
+
}
|