1 | #include "duckdb/storage/table/persistent_table_data.hpp" |
---|---|
2 | #include "duckdb/storage/statistics/base_statistics.hpp" |
3 | |
4 | namespace duckdb { |
5 | |
6 | PersistentTableData::PersistentTableData(idx_t column_count) |
7 | : total_rows(0), row_group_count(0), block_id(INVALID_BLOCK), offset(0) { |
8 | } |
9 | |
10 | PersistentTableData::~PersistentTableData() { |
11 | } |
12 | |
13 | } // namespace duckdb |
14 |