Skip to content

Commit

Permalink
fixed extra semi colon
Browse files Browse the repository at this point in the history
Signed-off-by: Mitchell Gale <[email protected]>
  • Loading branch information
MitchellGale committed Aug 23, 2023
1 parent f3ee74b commit ff90815
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sql/src/main/antlr/OpenSearchSQLParser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ tableFilter
;

showDescribePattern
: oldID=compatibleID | stringLiteral
;
: oldID=compatibleID | stringLiteral
;

compatibleID
: (MODULE | ID)+?
;
: (MODULE | ID)+?
;


// Select Statement's Details
querySpecification
: selectClause fromClause? limitClause?
Expand Down

0 comments on commit ff90815

Please sign in to comment.