Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
itholic committed Oct 16, 2024
1 parent 52e9d89 commit 061f2ee
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 @@ -870,7 +870,7 @@ private[sql] object QueryExecutionErrors extends QueryErrorsBase with ExecutionE

def cannotRemoveReservedPropertyError(property: String): SparkUnsupportedOperationException = {
new SparkUnsupportedOperationException(
errorClass = "CANNOT_REMOVE_REVERSED_PROPERTY",
errorClass = "CANNOT_REMOVE_RESERVED_PROPERTY",
messageParameters = Map("property" -> property))
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,7 @@ class V2SessionCatalogNamespaceSuite extends V2SessionCatalogBaseSuite {
exception = intercept[SparkUnsupportedOperationException] {
catalog.alterNamespace(testNs, NamespaceChange.removeProperty(p))
},
condition = "CANNOT_REMOVE_REVERSED_PROPERTY",
condition = "CANNOT_REMOVE_RESERVED_PROPERTY",
parameters = Map("property" -> p))

}
Expand Down

0 comments on commit 061f2ee

Please sign in to comment.