zstan commented on a change in pull request #484:
URL: https://github.com/apache/ignite-3/pull/484#discussion_r764592825



##########
File path: modules/calcite/src/main/codegen/includes/parserImpls.ftl
##########
@@ -184,6 +220,23 @@ SqlDrop SqlDropTable(Span s, boolean replace) :
     }
 }
 
+SqlDrop SqlDropIndex(Span s, boolean replace) :
+{
+    final boolean ifExists;
+    final SqlIdentifier idxId;
+    final SqlIdentifier tblId;
+}
+{
+    <INDEX> 
+    ifExists = IfExistsOpt()
+    idxId = SimpleIdentifier()
+    <ON>

Review comment:
       for now we need to know table name, check 
   tableManager.alterTable(fullName
   ...  idxes.delete(cmd.indexName()); will discuss it




-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to