duckdb 0.5.2-dev1262.0 → 0.5.2-dev1275.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.
@@ -7559,7 +7559,7 @@ public:
7559
7559
  static unique_ptr<ColumnReader> CreateReader(ParquetReader &reader, const LogicalType &type_p,
7560
7560
  const SchemaElement &schema_p, idx_t schema_idx_p, idx_t max_define,
7561
7561
  idx_t max_repeat);
7562
- virtual void InitializeRead(const std::vector<ColumnChunk> &columns, TProtocol &protocol_p);
7562
+ virtual void InitializeRead(idx_t row_group_index, const std::vector<ColumnChunk> &columns, TProtocol &protocol_p);
7563
7563
  virtual idx_t Read(uint64_t num_values, parquet_filter_t &filter, uint8_t *define_out, uint8_t *repeat_out,
7564
7564
  Vector &result_out);
7565
7565
 
@@ -7579,7 +7579,7 @@ public:
7579
7579
  // register the range this reader will touch for prefetching
7580
7580
  virtual void RegisterPrefetch(ThriftFileTransport &transport, bool allow_merge);
7581
7581
 
7582
- virtual unique_ptr<BaseStatistics> Stats(const std::vector<ColumnChunk> &columns);
7582
+ virtual unique_ptr<BaseStatistics> Stats(idx_t row_group_idx_p, const std::vector<ColumnChunk> &columns);
7583
7583
 
7584
7584
  protected:
7585
7585
  // readers that use the default Read() need to implement those
@@ -7742,6 +7742,7 @@ struct ParquetOptions {
7742
7742
 
7743
7743
  bool binary_as_string = false;
7744
7744
  bool filename = false;
7745
+ bool file_row_number = false;
7745
7746
  bool hive_partitioning = false;
7746
7747
 
7747
7748
  public: