You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gluten-ut/spark41/src/test/scala/org/apache/spark/sql/catalyst/expressions/GlutenCastWithAnsiOffSuite.scala
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,11 @@ class GlutenCastWithAnsiOffSuite extends CastWithAnsiOffSuite with GlutenTestsTr
99
99
100
100
// SystemV timezones are a legacy way of specifying timezones in Unix-like OS.
101
101
// It is not supported by Velox.
102
-
for (tz <-ALL_TIMEZONES.filterNot(_.getId.contains("SystemV"))) {
102
+
for (
103
+
tz <-ALL_TIMEZONES
104
+
.filterNot(_.getId.contains("SystemV"))
105
+
.filterNot(_.getId.contains("America/Coyhaique"))
106
+
) {
103
107
withSQLConf(
104
108
SQLConf.SESSION_LOCAL_TIMEZONE.key -> tz.getId
105
109
) {
@@ -184,6 +188,7 @@ class GlutenCastWithAnsiOffSuite extends CastWithAnsiOffSuite with GlutenTestsTr
0 commit comments