difin commented on code in PR #6449:
URL: https://github.com/apache/hive/pull/6449#discussion_r3268934364
##########
ql/src/java/org/apache/hadoop/hive/ql/ddl/view/create/CreateViewOperation.java:
##########
@@ -46,6 +51,11 @@ public CreateViewOperation(DDLOperationContext context,
CreateViewDesc desc) {
@Override
public int execute() throws HiveException {
+ if (desc.usesNativeViewCatalog()) {
+ executeNativeCatalogView();
+ return 0;
+ }
Review Comment:
Done - moved view creation to the hook and added test cases with
`iceberg_native_view.q` with `create or replace` and `if not exists`.
--
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]