Skip to content

FIX S091 #84

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ orderByItem

dataType
: dataTypeName dataTypeLength? characterSet? collateClause? | dataTypeName LP_ STRING_ (COMMA_ STRING_)* RP_ characterSet? collateClause?
| (SMALLINT | INTEGER | BIGINT) LBT_ arrayDimension RBT_
;

dataTypeName
Expand Down Expand Up @@ -329,3 +330,8 @@ ignoredIdentifier
dropBehaviour
: (CASCADE | RESTRICT)?
;

arrayDimension
: LBT_ ((NUMBER_ COLON_)? NUMBER_ RBT_) (COMMA_ LBT_ ((NUMBER_ COLON_)? NUMBER_ RBT_))*
| NUMBER_ (COMMA_ NUMBER_)*
;
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,9 @@ ROW
: R O W
;

BIGINT
: B I G I N T
;

//PASSWORD
// : P A S S W O R D
Expand Down