Skip to content

Commit

Permalink
[fix](Nereids) where of copy into should be optional (apache#41418)
Browse files Browse the repository at this point in the history
  • Loading branch information
morrySnow authored Sep 27, 2024
1 parent 0ef9ecd commit c87c904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ CONSISTENT: 'CONSISTENT';
CONSTRAINT: 'CONSTRAINT';
CONSTRAINTS: 'CONSTRAINTS';
CONVERT: 'CONVERT';
CONVERT_LSC: 'CONVERT_LSC';
CONVERT_LSC: 'CONVERT_LIGHT_SCHEMA_CHANGE_PROCESS';
COPY: 'COPY';
COUNT: 'COUNT';
CREATE: 'CREATE';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ unsupportedDmlStatement
: TRUNCATE TABLE multipartIdentifier specifiedPartition? #truncateTable
| COPY INTO name=multipartIdentifier columns=identifierList? FROM
(stageAndPattern | (LEFT_PAREN SELECT selectColumnClause
FROM stageAndPattern whereClause RIGHT_PAREN))
FROM stageAndPattern whereClause? RIGHT_PAREN))
properties=propertyClause? #copyInto
;

Expand Down

0 comments on commit c87c904

Please sign in to comment.