This is an automated email from the ASF dual-hosted git repository.
pvary pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new c8f4d5fee2 Spark: Add comet reader test (#14807)
c8f4d5fee2 is described below
commit c8f4d5fee230dc9f240149938ecad84a9a979b5e
Author: pvary <[email protected]>
AuthorDate: Tue Dec 9 20:30:53 2025 +0100
Spark: Add comet reader test (#14807)
---
.../source/TestParquetCometVectorizedScan.java | 33 ++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git
a/spark/v4.0/spark/src/test/java/org/apache/iceberg/spark/source/TestParquetCometVectorizedScan.java
b/spark/v4.0/spark/src/test/java/org/apache/iceberg/spark/source/TestParquetCometVectorizedScan.java
new file mode 100644
index 0000000000..5e1d88f8bc
--- /dev/null
+++
b/spark/v4.0/spark/src/test/java/org/apache/iceberg/spark/source/TestParquetCometVectorizedScan.java
@@ -0,0 +1,33 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.iceberg.spark.source;
+
+import org.junit.jupiter.api.BeforeAll;
+
+public class TestParquetCometVectorizedScan extends TestParquetScan {
+ @BeforeAll
+ public static void setComet() {
+ ScanTestBase.spark.conf().set("spark.sql.iceberg.parquet.reader-type",
"COMET");
+ }
+
+ @Override
+ protected boolean vectorized() {
+ return true;
+ }
+}