| 387 | const uint32_t ExecPlan::kMaxBatchSize; |
| 388 | |
| 389 | UnalignedBufferHandling GetDefaultUnalignedBufferHandling() { |
| 390 | static UnalignedBufferHandling default_value = |
| 391 | DetermineDefaultUnalignedBufferHandling(); |
| 392 | return default_value; |
| 393 | } |
| 394 | |
| 395 | Result<std::shared_ptr<ExecPlan>> ExecPlan::Make( |
| 396 | QueryOptions opts, ExecContext ctx, |
no test coverage detected