diff --git a/backends-clickhouse/src/test/scala/org/apache/gluten/execution/hive/GlutenClickHouseHiveTableSuite.scala b/backends-clickhouse/src/test/scala/org/apache/gluten/execution/hive/GlutenClickHouseHiveTableSuite.scala index a3089a018e67..b16ae3c119cc 100644 --- a/backends-clickhouse/src/test/scala/org/apache/gluten/execution/hive/GlutenClickHouseHiveTableSuite.scala +++ b/backends-clickhouse/src/test/scala/org/apache/gluten/execution/hive/GlutenClickHouseHiveTableSuite.scala @@ -1415,15 +1415,4 @@ class GlutenClickHouseHiveTableSuite runQueryAndCompare(selectSql)(df => checkOperatorCount[ProjectExecTransformer](3)(df)) spark.sql("DROP TABLE test_tbl_7054") } - - test("GLUTEN-6506: Orc read time zone") { - val dataPath = s"$basePath/orc-data/test_reader_time_zone.snappy.orc" - val create_table_sql = ("create table test_tbl_6506(" + - "id bigint, t timestamp) stored as orc location '%s'") - .format(dataPath) - val select_sql = "select * from test_tbl_6506" - spark.sql(create_table_sql) - compareResultsAgainstVanillaSpark(select_sql, true, _ => {}) - spark.sql("drop table test_tbl_6506") - } }