| 976 | } |
| 977 | |
| 978 | Status ParquetSchemaResolver::ResolveStruct(const SchemaNode& node, |
| 979 | const ColumnType& col_type, const SchemaPath& path, int idx) const { |
| 980 | if (node.children.size() < 1) { |
| 981 | ErrorMsg msg(TErrorCode::PARQUET_UNRECOGNIZED_SCHEMA, filename_, |
| 982 | PrintSubPath(tbl_desc_, path, idx), "struct", node.DebugString()); |
| 983 | return Status::Expected(msg); |
| 984 | } |
| 985 | return Status::OK(); |
| 986 | } |
| 987 | |
| 988 | Status ParquetSchemaResolver::ValidateScalarNode(const SchemaNode& node, |
| 989 | const ColumnType& col_type, const SchemaPath& path, int idx) const { |
nothing calls this directly
no test coverage detected