huaxingao commented on code in PR #15373:
URL: https://github.com/apache/iceberg/pull/15373#discussion_r2850865943
##########
spark/v3.5/spark/src/test/java/org/apache/iceberg/spark/data/vectorized/parquet/TestParquetVectorizedReads.java:
##########
@@ -86,15 +86,19 @@ public class TestParquetVectorizedReads extends
AvroDataTestBase {
"RLE_DICTIONARY",
"DELTA_BINARY_PACKED",
"DELTA_LENGTH_BYTE_ARRAY",
- "DELTA_BYTE_ARRAY");
+ "DELTA_BYTE_ARRAY",
+ "BYTE_STREAM_SPLIT");
private static final Map<String, PrimitiveType> GOLDEN_FILE_TYPES =
- ImmutableMap.of(
- "string", Types.StringType.get(),
- "float", Types.FloatType.get(),
- "int32", Types.IntegerType.get(),
- "int64", Types.LongType.get(),
- "binary", Types.BinaryType.get(),
- "boolean", Types.BooleanType.get());
+ ImmutableMap.<String, PrimitiveType>builder()
Review Comment:
The golden test uses `typeName + ".parquet"` (no _with_nulls). Are the
`*_with_nulls.parquet` fixtures used anywhere?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]