1#pragma once
2
3namespace duckdb {
4
5class PatasPrimitives {
6public:
7 static constexpr uint32_t PATAS_GROUP_SIZE = 1024;
8 static constexpr uint8_t HEADER_SIZE = sizeof(uint32_t);
9 static constexpr uint8_t BYTECOUNT_BITSIZE = 3;
10 static constexpr uint8_t INDEX_BITSIZE = 7;
11};
12
13} // namespace duckdb
14