We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 162fbf0 commit ae1ebecCopy full SHA for ae1ebec
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/AstBuilder.scala
@@ -2533,7 +2533,8 @@ class AstBuilder(conf: SQLConf) extends SqlBaseBaseVisitor[AnyRef] with Logging
2533
throw new ParseException(s"$PROP_COMMENT is a reserved namespace property, please use" +
2534
s" the COMMENT clause to specify it.", ctx)
2535
case (ownership, _) if ownership == PROP_OWNER_NAME || ownership == PROP_OWNER_TYPE =>
2536
- throw new ParseException(s"$ownership is a reserved namespace property", ctx)
+ throw new ParseException(s"$ownership is a reserved namespace property , please use" +
2537
+ " ALTER NAMESPACE ... SET OWNER ... to specify it.", ctx)
2538
case _ =>
2539
}
2540
properties
0 commit comments