File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.3 1998/02/18 03:26:54 vadim Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.4 1998/02/18 07:25:57 thomas Exp $
14
14
*
15
15
* HISTORY
16
16
* AUTHOR DATE MAJOR EVENT
@@ -994,6 +994,8 @@ constraint_expr: AexprConst
994
994
}
995
995
| constraint_expr Op constraint_expr
996
996
{ $$ = nconc( $1, lcons( makeString( $2), $3)); }
997
+ | constraint_expr LIKE constraint_expr
998
+ { $$ = nconc( $1, lcons( makeString( "like"), $3)); }
997
999
| constraint_expr AND constraint_expr
998
1000
{ $$ = nconc( $1, lcons( makeString( "AND"), $3)); }
999
1001
| constraint_expr OR constraint_expr
@@ -4620,6 +4622,8 @@ ColId: IDENT { $$ = $1; }
4620
4622
| TIME { $$ = "time"; }
4621
4623
| TRIGGER { $$ = "trigger"; }
4622
4624
| TYPE_P { $$ = "type"; }
4625
+ | USER { $$ = "user"; }
4626
+ | VALID { $$ = "valid"; }
4623
4627
| VERSION { $$ = "version"; }
4624
4628
| ZONE { $$ = "zone"; }
4625
4629
;
You can’t perform that action at this time.
0 commit comments