Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-s-db committed Jun 25, 2024
1 parent dd3be38 commit ef38c62
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ class ClusteringColumnSuite extends ClusteredTableTestUtils with DeltaSQLCommand
val e = intercept[AnalysisException] {
ClusteringColumn(schema, "b")
}
assert(e.getMessage.contains("Couldn't find column b"))
checkError(
e,
"DELTA_COLUMN_NOT_FOUND_IN_SCHEMA",
parameters = Map(
"columnName" -> "b",
"tableSchema" -> schema.treeString))
}
}
}

0 comments on commit ef38c62

Please sign in to comment.