Skip to content

Commit

Permalink
Remove useless ut case
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiayi771 committed Mar 14, 2024
1 parent 73c8eb5 commit 1d95748
Showing 1 changed file with 0 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,43 +73,6 @@ class VeloxIcebergSuite extends WholeStageTransformerSuite {
}
}

test("iceberg read mor table") {
withTable("iceberg_mor_tb") {
withSQLConf(GlutenConfig.GLUTEN_ENABLE_KEY -> "false") {
spark.sql("""
|create table iceberg_mor_tb (
| id int,
| name string,
| p string
|) using iceberg
|tblproperties (
| 'format-version' = '2',
| 'write.delete.mode' = 'merge-on-read',
| 'write.update.mode' = 'merge-on-read',
| 'write.merge.mode' = 'merge-on-read'
|)
|partitioned by (p);
|""".stripMargin)
// Insert some test rows.
spark.sql("""
|insert into table iceberg_mor_tb
|values (1, 'a1', 'p1'), (2, 'a2', 'p1'), (3, 'a3', 'p2');
|""".stripMargin)
// Delete row.
spark.sql(
"""
|delete from iceberg_mor_tb where name = 'a1';
|""".stripMargin
)
}
runQueryAndCompare("""
|select * from iceberg_mor_tb;
|""".stripMargin) {
checkOperatorMatch[IcebergScanTransformer]
}
}
}

test("iceberg bucketed join") {
assume(isSparkVersionAtleast("3.4"))
val leftTable = "p_str_tb"
Expand Down

0 comments on commit 1d95748

Please sign in to comment.