duckdb 0.8.2-dev2356.0 → 0.8.2-dev2509.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.
Files changed (38) hide show
  1. package/binding.gyp +7 -7
  2. package/package.json +1 -1
  3. package/src/duckdb/extension/icu/icu-datefunc.cpp +9 -0
  4. package/src/duckdb/extension/icu/icu-datepart.cpp +7 -5
  5. package/src/duckdb/extension/icu/icu-strptime.cpp +1 -20
  6. package/src/duckdb/src/common/http_state.cpp +78 -0
  7. package/src/duckdb/src/common/types/list_segment.cpp +42 -134
  8. package/src/duckdb/src/common/types/vector.cpp +21 -0
  9. package/src/duckdb/src/core_functions/aggregate/holistic/mode.cpp +5 -7
  10. package/src/duckdb/src/core_functions/aggregate/holistic/quantile.cpp +17 -19
  11. package/src/duckdb/src/core_functions/aggregate/nested/list.cpp +80 -61
  12. package/src/duckdb/src/core_functions/function_list.cpp +2 -2
  13. package/src/duckdb/src/core_functions/scalar/list/array_slice.cpp +308 -82
  14. package/src/duckdb/src/execution/aggregate_hashtable.cpp +6 -0
  15. package/src/duckdb/src/execution/perfect_aggregate_hashtable.cpp +11 -5
  16. package/src/duckdb/src/execution/window_executor.cpp +18 -20
  17. package/src/duckdb/src/function/aggregate/distributive/count.cpp +2 -2
  18. package/src/duckdb/src/function/table/version/pragma_version.cpp +2 -2
  19. package/src/duckdb/src/include/duckdb/common/http_state.hpp +61 -28
  20. package/src/duckdb/src/include/duckdb/common/types/list_segment.hpp +9 -11
  21. package/src/duckdb/src/include/duckdb/common/types/vector.hpp +7 -0
  22. package/src/duckdb/src/include/duckdb/common/vector_operations/aggregate_executor.hpp +7 -2
  23. package/src/duckdb/src/include/duckdb/core_functions/scalar/list_functions.hpp +4 -4
  24. package/src/duckdb/src/include/duckdb/execution/perfect_aggregate_hashtable.hpp +4 -2
  25. package/src/duckdb/src/include/duckdb/execution/window_segment_tree.hpp +0 -2
  26. package/src/duckdb/src/include/duckdb/function/aggregate_function.hpp +0 -1
  27. package/src/duckdb/src/include/duckdb/parser/expression/operator_expression.hpp +20 -3
  28. package/src/duckdb/src/main/extension/extension_helper.cpp +2 -1
  29. package/src/duckdb/src/parser/transform/expression/transform_array_access.cpp +13 -4
  30. package/src/duckdb/src/parser/transform/expression/transform_function.cpp +3 -0
  31. package/src/duckdb/src/storage/serialization/serialize_constraint.cpp +2 -2
  32. package/src/duckdb/src/storage/serialization/serialize_create_info.cpp +2 -2
  33. package/src/duckdb/src/storage/serialization/serialize_parse_info.cpp +2 -2
  34. package/src/duckdb/src/storage/serialization/serialize_tableref.cpp +2 -4
  35. package/src/duckdb/third_party/libpg_query/include/nodes/parsenodes.hpp +1 -0
  36. package/src/duckdb/third_party/libpg_query/src_backend_parser_gram.cpp +11077 -10674
  37. package/src/duckdb/ub_extension_icu_third_party_icu_i18n.cpp +6 -6
  38. package/src/duckdb/ub_src_common.cpp +2 -0
@@ -348,17 +348,17 @@
348
348
 
349
349
  #include "extension/icu/third_party/icu/i18n/wintzimpl.cpp"
350
350
 
351
- #include "extension/icu/third_party/icu/i18n/double-conversion-bignum.cpp"
351
+ #include "extension/icu/third_party/icu/i18n/double-conversion-fast-dtoa.cpp"
352
352
 
353
353
  #include "extension/icu/third_party/icu/i18n/double-conversion-cached-powers.cpp"
354
354
 
355
- #include "extension/icu/third_party/icu/i18n/double-conversion-strtod.cpp"
356
-
357
- #include "extension/icu/third_party/icu/i18n/double-conversion-double-to-string.cpp"
358
-
359
355
  #include "extension/icu/third_party/icu/i18n/double-conversion-string-to-double.cpp"
360
356
 
361
357
  #include "extension/icu/third_party/icu/i18n/double-conversion-bignum-dtoa.cpp"
362
358
 
363
- #include "extension/icu/third_party/icu/i18n/double-conversion-fast-dtoa.cpp"
359
+ #include "extension/icu/third_party/icu/i18n/double-conversion-bignum.cpp"
360
+
361
+ #include "extension/icu/third_party/icu/i18n/double-conversion-strtod.cpp"
362
+
363
+ #include "extension/icu/third_party/icu/i18n/double-conversion-double-to-string.cpp"
364
364
 
@@ -34,6 +34,8 @@
34
34
 
35
35
  #include "src/common/hive_partitioning.cpp"
36
36
 
37
+ #include "src/common/http_state.cpp"
38
+
37
39
  #include "src/common/pipe_file_system.cpp"
38
40
 
39
41
  #include "src/common/local_file_system.cpp"