ajantha-bhat commented on code in PR #11326:
URL: https://github.com/apache/iceberg/pull/11326#discussion_r1802439972
##########
spark/v3.5/spark/src/main/java/org/apache/iceberg/spark/SparkSessionCatalog.java:
##########
@@ -397,4 +401,61 @@ public UnboundFunction loadFunction(Identifier ident)
throws NoSuchFunctionExcep
return getSessionCatalog().loadFunction(ident);
}
}
+
+ @Override
+ public View replaceView(
+ Identifier ident,
+ String sql,
+ String currentCatalog,
+ String[] currentNamespace,
+ StructType schema,
+ String[] queryColumnNames,
+ String[] columnAliases,
+ String[] columnComments,
+ Map<String, String> properties)
+ throws NoSuchViewException, NoSuchNamespaceException {
+ throw new UnsupportedOperationException("SessionCatalog doesn't support
views");
Review Comment:
All these methods will later be implemented form
https://github.com/apache/iceberg/pull/10231
Currently not required for adding a procedure for view.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]