Make a column descriptor with an undefined column order.
| 48 | |
| 49 | // Make a column descriptor with an undefined column order. |
| 50 | ColumnDescriptor MakeColumnDescriptor() { |
| 51 | auto node = schema::Int32("int_col", Repetition::REQUIRED); |
| 52 | static_cast<schema::PrimitiveNode*>(node.get()) |
| 53 | ->SetColumnOrder(ColumnOrder::undefined_); |
| 54 | return ColumnDescriptor(node, /*max_definition_level=*/0, /*max_repetition_level=*/0); |
| 55 | } |
| 56 | |
| 57 | // Adds page statistics occupying a certain amount of bytes (for testing very |
| 58 | // large page headers) |
no test coverage detected