duckdb 0.5.2-dev1616.0 → 0.5.2-dev1620.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.5.2-dev1616.0",
5
+ "version": "0.5.2-dev1620.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -213352,7 +213352,7 @@ string ValidityStatistics::ToString() const {
213352
213352
 
213353
213353
  namespace duckdb {
213354
213354
 
213355
- const uint64_t VERSION_NUMBER = 38;
213355
+ const uint64_t VERSION_NUMBER = 39;
213356
213356
 
213357
213357
  } // namespace duckdb
213358
213358
 
package/src/duckdb.hpp CHANGED
@@ -11,8 +11,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
11
11
  #pragma once
12
12
  #define DUCKDB_AMALGAMATION 1
13
13
  #define DUCKDB_AMALGAMATION_EXTENDED 1
14
- #define DUCKDB_SOURCE_ID "2da7bf4489"
15
- #define DUCKDB_VERSION "v0.5.2-dev1616"
14
+ #define DUCKDB_SOURCE_ID "38cc8e186e"
15
+ #define DUCKDB_VERSION "v0.5.2-dev1620"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //
@@ -2394,7 +2394,7 @@ namespace duckdb {
2394
2394
 
2395
2395
  //! The vector size used in the execution engine
2396
2396
  #ifndef STANDARD_VECTOR_SIZE
2397
- #define STANDARD_VECTOR_SIZE 1024
2397
+ #define STANDARD_VECTOR_SIZE 2048
2398
2398
  #endif
2399
2399
 
2400
2400
  #if ((STANDARD_VECTOR_SIZE & (STANDARD_VECTOR_SIZE - 1)) != 0)
@@ -27632,7 +27632,7 @@ struct BufferedCSVReaderOptions {
27632
27632
  //! Expected number of columns
27633
27633
  idx_t num_cols = 0;
27634
27634
  //! Number of samples to buffer
27635
- idx_t buffer_size = STANDARD_VECTOR_SIZE * 100;
27635
+ idx_t buffer_size = STANDARD_VECTOR_SIZE * 50;
27636
27636
  //! Specifies the string that represents a null value
27637
27637
  string null_str;
27638
27638
  //! Whether file is compressed or not, and if so which compression type