Searched refs:schema_nodes (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/contrib/cloud/kernels/ |
D | bigquery_table_accessor_test.cc | 141 EXPECT_EQ(9, schema_root.schema_nodes.size()); 143 EXPECT_EQ(schema_root.schema_nodes[0].name, "int_field"); 144 EXPECT_EQ(schema_root.schema_nodes[0].type, 147 EXPECT_EQ(schema_root.schema_nodes[1].name, "str_field"); 148 EXPECT_EQ(schema_root.schema_nodes[1].type, 151 EXPECT_EQ(1, schema_root.schema_nodes[2].schema_nodes.size()); 152 EXPECT_EQ(schema_root.schema_nodes[2].name, "rec_field"); 153 EXPECT_EQ(schema_root.schema_nodes[2].type, 156 EXPECT_EQ(schema_root.schema_nodes[2].schema_nodes[0].name, 158 EXPECT_EQ(schema_root.schema_nodes[2].schema_nodes[0].type, [all …]
|
D | bigquery_table_accessor.cc | 226 for (const auto& schema_node : root_schema_node.schema_nodes) { in ParseColumnValues() 296 root->schema_nodes.emplace_back(current_column_name, type); in ExtractColumnType() 300 &root->schema_nodes.back())); in ExtractColumnType()
|
D | bigquery_table_accessor.h | 100 std::vector<SchemaNode> schema_nodes; member
|