Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/diffs/3.4.3.diff
Original file line number Diff line number Diff line change
Expand Up @@ -2311,7 +2311,7 @@ index 351c6d698fc..583d9225cca 100644
private def testRowIndexGeneration(label: String, conf: RowIndexTestConf): Unit = {
test (s"$label - ${conf.desc}") {
+ // native_datafusion Parquet scan does not support row index generation.
+ assume(CometConf.COMET_NATIVE_SCAN_IMPL.get() != CometConf.SCAN_NATIVE_DATAFUSION)
+ assume(!Seq(CometConf.SCAN_NATIVE_DATAFUSION, CometConf.SCAN_AUTO).contains(CometConf.COMET_NATIVE_SCAN_IMPL.get()))
withSQLConf(conf.sqlConfs: _*) {
withTempPath { path =>
val rowIndexColName = FileFormat.ROW_INDEX_TEMPORARY_COLUMN_NAME
Expand All @@ -2333,7 +2333,7 @@ index 351c6d698fc..583d9225cca 100644

test(s"invalid row index column type - ${conf.desc}") {
+ // native_datafusion Parquet scan does not support row index generation.
+ assume(CometConf.COMET_NATIVE_SCAN_IMPL.get() != CometConf.SCAN_NATIVE_DATAFUSION)
+ assume(!Seq(CometConf.SCAN_NATIVE_DATAFUSION, CometConf.SCAN_AUTO).contains(CometConf.COMET_NATIVE_SCAN_IMPL.get()))
withSQLConf(conf.sqlConfs: _*) {
withTempPath{ path =>
val df = spark.range(0, 10, 1, 1).toDF("id")
Expand Down
Loading
Loading