Skip to content

Commit 5ef5da2

Browse files
committed
experiment: what tests still fail with native_datafusion scan
1 parent f49e4b6 commit 5ef5da2

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

spark/src/main/scala/org/apache/comet/rules/CometScanRule.scala

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,7 @@ case class CometScanRule(session: SparkSession)
167167
}
168168

169169
COMET_NATIVE_SCAN_IMPL.get() match {
170-
case SCAN_AUTO =>
171-
// TODO add support for native_datafusion in the future
172-
nativeIcebergCompatScan(session, scanExec, r, hadoopConf)
173-
.getOrElse(scanExec)
174-
case SCAN_NATIVE_DATAFUSION =>
170+
case SCAN_AUTO | SCAN_NATIVE_DATAFUSION =>
175171
nativeDataFusionScan(plan, session, scanExec, r, hadoopConf).getOrElse(scanExec)
176172
case SCAN_NATIVE_ICEBERG_COMPAT =>
177173
nativeIcebergCompatScan(session, scanExec, r, hadoopConf).getOrElse(scanExec)

0 commit comments

Comments
 (0)