Junyewu commented on issue #838:
URL: https://github.com/apache/submarine/issues/838#issuecomment-996506540
I try to make `CreateViewCommand` is not doMasking,and it is run ok
org.apache.spark.sql.catalyst.optimizer.scala
```
override def apply(plan: LogicalPlan): LogicalPlan = plan match {
case c: Command => c match {
case c: CreateDataSourceTableAsSelectCommand => c.copy(query =
doMasking(c.query))
case c: CreateHiveTableAsSelectCommand => c.copy(query =
doMasking(c.query))
// case c: CreateViewCommand => c.copy(child = doMasking(c.child))
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]