duckdb 0.5.2-dev1112.0 → 0.5.2-dev1118.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 +1 -1
- package/src/duckdb.hpp +3 -3
- package/src/parquet-amalgamation.cpp +25834 -25834
package/package.json
CHANGED
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 "
|
|
15
|
-
#define DUCKDB_VERSION "v0.5.2-
|
|
14
|
+
#define DUCKDB_SOURCE_ID "5160f5742"
|
|
15
|
+
#define DUCKDB_VERSION "v0.5.2-dev1118"
|
|
16
16
|
//===----------------------------------------------------------------------===//
|
|
17
17
|
// DuckDB
|
|
18
18
|
//
|
|
@@ -11629,10 +11629,10 @@ public:
|
|
|
11629
11629
|
void ScanAtIndex(ColumnDataParallelScanState &state, ColumnDataLocalScanState &lstate, DataChunk &result,
|
|
11630
11630
|
idx_t chunk_index, idx_t segment_index, idx_t row_index) const;
|
|
11631
11631
|
|
|
11632
|
-
private:
|
|
11633
11632
|
//! Initialize the column data collection
|
|
11634
11633
|
void Initialize(vector<LogicalType> types);
|
|
11635
11634
|
|
|
11635
|
+
private:
|
|
11636
11636
|
//! Creates a new segment within the ColumnDataCollection
|
|
11637
11637
|
void CreateSegment();
|
|
11638
11638
|
|