| 1099 | INSTANTIATE_TYPED_TEST_SUITE_P(Float64, TestTableToTensorRowMajor, DoubleType); |
| 1100 | |
| 1101 | std::shared_ptr<Table> MakeTableWithOneNullFilledColumn( |
| 1102 | const std::string& column_name, const std::shared_ptr<DataType>& data_type, |
| 1103 | const int length) { |
| 1104 | auto array_of_nulls = *MakeArrayOfNull(data_type, length); |
| 1105 | return Table::Make(schema({field(column_name, data_type)}), {array_of_nulls}); |
| 1106 | } |
| 1107 | |
| 1108 | using TestPromoteTableToSchema = TestTable; |
| 1109 |
no test coverage detected