Skip to content

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
zhipengmao-db committed Sep 11, 2024
1 parent 279a26c commit f3da61b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1775,7 +1775,7 @@ class DataSourceV2SQLSuiteV1Filter
sql("USE dummy")
sql(s"$statement dummy.$tableDefinition USING foo")
},
errorClass = "UNSUPPORTED_FEATURE.TABLE_OPERATION",
condition = "UNSUPPORTED_FEATURE.TABLE_OPERATION",
parameters = Map(
"tableName" -> "`dummy`.`my_tab`",
"operation" -> "identity column"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2293,7 +2293,7 @@ abstract class DDLSuite extends QueryTest with DDLSuiteBase {
exception = intercept[AnalysisException] {
sql(s"create table t(a int, b bigint generated always as identity()) using parquet")
},
errorClass = "UNSUPPORTED_FEATURE.TABLE_OPERATION",
condition = "UNSUPPORTED_FEATURE.TABLE_OPERATION",
parameters = Map("tableName" -> "`spark_catalog`.`default`.`t`",
"operation" -> "identity columns")
)
Expand Down

0 comments on commit f3da61b

Please sign in to comment.