duckdb 0.5.2-dev4.0 → 0.5.2-dev436.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.cpp +11115 -6484
- package/src/duckdb.hpp +8854 -6896
- package/src/parquet-amalgamation.cpp +34330 -34330
- package/src/parquet-amalgamation.hpp +3 -1
|
@@ -7541,6 +7541,7 @@ class ParquetReader;
|
|
|
7541
7541
|
using duckdb_apache::thrift::protocol::TProtocol;
|
|
7542
7542
|
|
|
7543
7543
|
using duckdb_parquet::format::ColumnChunk;
|
|
7544
|
+
using duckdb_parquet::format::CompressionCodec;
|
|
7544
7545
|
using duckdb_parquet::format::FieldRepetitionType;
|
|
7545
7546
|
using duckdb_parquet::format::PageHeader;
|
|
7546
7547
|
using duckdb_parquet::format::SchemaElement;
|
|
@@ -7617,9 +7618,10 @@ protected:
|
|
|
7617
7618
|
|
|
7618
7619
|
private:
|
|
7619
7620
|
void PrepareRead(parquet_filter_t &filter);
|
|
7620
|
-
void PreparePage(
|
|
7621
|
+
void PreparePage(PageHeader &page_hdr);
|
|
7621
7622
|
void PrepareDataPage(PageHeader &page_hdr);
|
|
7622
7623
|
void PreparePageV2(PageHeader &page_hdr);
|
|
7624
|
+
void DecompressInternal(CompressionCodec::type codec, const char *src, idx_t src_size, char *dst, idx_t dst_size);
|
|
7623
7625
|
|
|
7624
7626
|
const duckdb_parquet::format::ColumnChunk *chunk = nullptr;
|
|
7625
7627
|
|