| 308 | * partitioning. |
| 309 | */ |
| 310 | struct MemorySize { |
| 311 | /** |
| 312 | * Maximum size of overlapping tiles fetched into memory for |
| 313 | * fixed-sized attributes/dimensions or offsets of var-sized |
| 314 | * attributes/dimensions. |
| 315 | */ |
| 316 | uint64_t size_fixed_; |
| 317 | |
| 318 | /** |
| 319 | * Maximum size of overlapping tiles fetched into memory for |
| 320 | * var-sized attributes/dimensions. |
| 321 | */ |
| 322 | uint64_t size_var_; |
| 323 | |
| 324 | /** |
| 325 | * Maximum size of overlapping validity tiles fetched into memory for |
| 326 | * nullable attributes. |
| 327 | */ |
| 328 | uint64_t size_validity_; |
| 329 | }; |
| 330 | |
| 331 | /** |
| 332 | * Wrapper for optional<tuple<std::string, RangeSetAndSuperset>> for |
no outgoing calls
no test coverage detected