| 521 | } |
| 522 | |
| 523 | std::shared_ptr<Table> MakeTableWithOneNullFilledColumn( |
| 524 | const std::string& column_name, const std::shared_ptr<DataType>& data_type, |
| 525 | const int length) { |
| 526 | auto array_of_nulls = *MakeArrayOfNull(data_type, length); |
| 527 | return Table::Make(schema({field(column_name, data_type)}), {array_of_nulls}); |
| 528 | } |
| 529 | |
| 530 | using TestPromoteTableToSchema = TestTable; |
| 531 |
no test coverage detected