This is an automated email from the ASF dual-hosted git repository.

duanzhengqiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git


The following commit(s) were added to refs/heads/master by this push:
     new 5c694d98234 fix: fix oracle antlr bugs. (#27906)
5c694d98234 is described below

commit 5c694d98234f8d62914f54c27d74000ce9c82641
Author: boyjoy1127 <[email protected]>
AuthorDate: Fri Aug 4 13:06:37 2023 +0800

    fix: fix oracle antlr bugs. (#27906)
---
 .../src/main/antlr4/imports/oracle/DDLStatement.g4     | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git 
a/parser/sql/dialect/oracle/src/main/antlr4/imports/oracle/DDLStatement.g4 
b/parser/sql/dialect/oracle/src/main/antlr4/imports/oracle/DDLStatement.g4
index 533ec114391..4cc1e029144 100644
--- a/parser/sql/dialect/oracle/src/main/antlr4/imports/oracle/DDLStatement.g4
+++ b/parser/sql/dialect/oracle/src/main/antlr4/imports/oracle/DDLStatement.g4
@@ -3772,24 +3772,6 @@ alterType
     | (alterMethodSpec | alterAttributeDefinition | alterCollectionClauses | 
NOT (INSTANTIABLE | FINAL)))?
     ;
 
-createCluster
-    : CREATE CLUSTER (schemaName DOT_)? clusterName
-    LP_ (columnName dataType SORT? (COMMA_ columnName dataType SORT?)*) RP_
-    ;
-
-createCluster
-    : CREATE CLUSTER (schemaName DOT_)? clusterName
-    LP_ (columnName dataType SORT? (COMMA_ columnName dataType SORT?)*) RP_
-    parallelClause? (NOROWDEPENDENCIES | ROWDEPENDENCIES)? (CACHE | NOCACHE)?
-    ;
-
-createCluster
-    : CREATE CLUSTER (schemaName DOT_)? clusterName
-    LP_ (columnName dataType SORT? (COMMA_ columnName dataType SORT?)*) RP_
-    (physicalAttributesClause | SET sizeClause)?
-    parallelClause? (NOROWDEPENDENCIES | ROWDEPENDENCIES)? (CACHE | NOCACHE)?
-    ;
-
 createCluster
     : CREATE CLUSTER (schemaName DOT_)? clusterName
     LP_ (columnName dataType SORT? (COMMA_ columnName dataType SORT?)*) RP_

Reply via email to