duckdb 0.5.2-dev1614.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-dev1614.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
@@ -123578,6 +123578,7 @@ static void WriteCSVSink(ExecutionContext &context, FunctionData &bind_data, Glo
123578
123578
 
123579
123579
  // first cast the columns of the chunk to varchar
123580
123580
  auto &cast_chunk = local_data.cast_chunk;
123581
+ cast_chunk.Reset();
123581
123582
  cast_chunk.SetCardinality(input);
123582
123583
  for (idx_t col_idx = 0; col_idx < input.ColumnCount(); col_idx++) {
123583
123584
  if (csv_data.sql_types[col_idx].id() == LogicalTypeId::VARCHAR) {
@@ -213351,7 +213352,7 @@ string ValidityStatistics::ToString() const {
213351
213352
 
213352
213353
  namespace duckdb {
213353
213354
 
213354
- const uint64_t VERSION_NUMBER = 38;
213355
+ const uint64_t VERSION_NUMBER = 39;
213355
213356
 
213356
213357
  } // namespace duckdb
213357
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 "ee1f2de5b3"
15
- #define DUCKDB_VERSION "v0.5.2-dev1614"
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