Skip to content

Commit

Permalink
Merge pull request #137 from makssent/T141_FIX_sharding
Browse files Browse the repository at this point in the history
T141 SIMILAR predicate support
  • Loading branch information
TedCraft committed Sep 15, 2024
2 parents 1a72df5 + 6b91ab0 commit c762bc1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@ tableName
: (owner DOT_)? name
;

packageName
: identifier
;

parameterName
: identifier
;
Expand Down Expand Up @@ -254,6 +250,7 @@ predicate
| bitExpr NOT? STARTING WITH? bitExpr
| bitExpr IS NOT? DISTINCT FROM bitExpr
| bitExpr IS NOT? NULL
| bitExpr NOT? SIMILAR TO bitExpr (ESCAPE bitExpr)?
| bitExpr
;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ dataTypeOption
;

checkConstraintDefinition
: (CONSTRAINT ignoredIdentifier?)? CHECK expr
: (CONSTRAINT ignoredIdentifier?)? checkClause
;

referenceDefinition
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -973,4 +973,8 @@ DATABASE

COMMENT
: C O M M E N T
;

SIMILAR
: S I M I L A R
;

0 comments on commit c762bc1

Please sign in to comment.