From 1d95748523580d7c3859c274e82aa5a038bd69ef Mon Sep 17 00:00:00 2001 From: "joey.ljy" Date: Thu, 14 Mar 2024 16:51:23 +0800 Subject: [PATCH] Remove useless ut case --- .../execution/VeloxIcebergSuite.scala | 37 ------------------- 1 file changed, 37 deletions(-) diff --git a/gluten-iceberg/src/test/scala/io/glutenproject/execution/VeloxIcebergSuite.scala b/gluten-iceberg/src/test/scala/io/glutenproject/execution/VeloxIcebergSuite.scala index 211caa1720b6..6b332641eb8b 100644 --- a/gluten-iceberg/src/test/scala/io/glutenproject/execution/VeloxIcebergSuite.scala +++ b/gluten-iceberg/src/test/scala/io/glutenproject/execution/VeloxIcebergSuite.scala @@ -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"