Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GLUTEN-1632][CH]Daily Update Clickhouse Version (20231108) #3640

Merged
merged 2 commits into from
Nov 8, 2023
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -1206,7 +1206,7 @@ class GlutenClickHouseTPCHParquetSuite extends GlutenClickHouseTPCHAbstractSuite
}
}

ignore("test 'cast null value' -- due to https://github.com/ClickHouse/ClickHouse/pull/55146") {
test("test 'cast null value'") {
val sql = "select cast(x as double), cast(x as float), cast(x as string), cast(x as binary)," +
"cast(x as long), cast(x as int), cast(x as short), cast(x as byte), cast(x as boolean)," +
"cast(x as date), cast(x as timestamp), cast(x as decimal(10, 2)) from " +
Expand Down
4 changes: 2 additions & 2 deletions cpp-ch/clickhouse.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
CH_ORG=Kyligence
CH_BRANCH=rebase_ch/20231103
CH_COMMIT=d3d4e86f42f
CH_BRANCH=rebase_ch/20231108
CH_COMMIT=4aefea4773e
Original file line number Diff line number Diff line change
Expand Up @@ -574,8 +574,6 @@ class ClickHouseTestSettings extends BackendTestSettings {
.exclude("SPARK-34727: cast from float II")
.exclude("SPARK-35720: cast invalid string input to timestamp without time zone")
.exclude("Cast should output null for invalid strings when ANSI is not enabled.")
.exclude("data type casting II")
.exclude("SPARK-36286: invalid string cast to timestamp")
enableSuite[GlutenCastSuiteWithAnsiModeOn]
.exclude("null cast")
.exclude("cast string to date")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -614,8 +614,6 @@ class ClickHouseTestSettings extends BackendTestSettings {
.exclude("SPARK-36924: Cast YearMonthIntervalType to IntegralType")
.exclude("SPARK-36924: Cast IntegralType to YearMonthIntervalType")
.exclude("Cast should output null for invalid strings when ANSI is not enabled.")
.exclude("data type casting II")
.exclude("SPARK-36286: invalid string cast to timestamp")
enableSuite[GlutenCastSuiteWithAnsiModeOn]
.exclude("null cast")
.exclude("cast string to date")
Expand Down
Loading