@@ -3672,14 +3672,14 @@ ColConstraintElem:
3672
3672
Constraint *n = makeNode(Constraint);
3673
3673
n->contype = CONSTR_FOREIGN;
3674
3674
n->location = @1 ;
3675
- n->pktable = $2 ;
3676
- n->fk_attrs = NIL;
3677
- n->pk_attrs = $3 ;
3678
- n->fk_matchtype = $4 ;
3679
- n->fk_upd_action = (char ) ($5 >> 8 );
3680
- n->fk_del_action = (char ) ($5 & 0xFF );
3681
- n->skip_validation = false ;
3682
- n->initially_valid = true ;
3675
+ n->pktable = $2 ;
3676
+ n->fk_attrs = NIL;
3677
+ n->pk_attrs = $3 ;
3678
+ n->fk_matchtype = $4 ;
3679
+ n->fk_upd_action = (char ) ($5 >> 8 );
3680
+ n->fk_del_action = (char ) ($5 & 0xFF );
3681
+ n->skip_validation = false ;
3682
+ n->initially_valid = true ;
3683
3683
$$ = (Node *)n;
3684
3684
}
3685
3685
;
@@ -3865,13 +3865,13 @@ ConstraintElem:
3865
3865
Constraint *n = makeNode(Constraint);
3866
3866
n->contype = CONSTR_EXCLUSION;
3867
3867
n->location = @1 ;
3868
- n->access_method = $2 ;
3869
- n->exclusions = $4 ;
3870
- n->including = $6 ;
3871
- n->options = $7 ;
3872
- n->indexname = NULL ;
3873
- n->indexspace = $8 ;
3874
- n->where_clause = $9 ;
3868
+ n->access_method = $2 ;
3869
+ n->exclusions = $4 ;
3870
+ n->including = $6 ;
3871
+ n->options = $7 ;
3872
+ n->indexname = NULL ;
3873
+ n->indexspace = $8 ;
3874
+ n->where_clause = $9 ;
3875
3875
processCASbits ($10 , @10 , " EXCLUDE" ,
3876
3876
&n->deferrable, &n->initdeferred, NULL ,
3877
3877
NULL , yyscanner);
@@ -3883,12 +3883,12 @@ ConstraintElem:
3883
3883
Constraint *n = makeNode(Constraint);
3884
3884
n->contype = CONSTR_FOREIGN;
3885
3885
n->location = @1 ;
3886
- n->pktable = $7 ;
3887
- n->fk_attrs = $4 ;
3888
- n->pk_attrs = $8 ;
3889
- n->fk_matchtype = $9 ;
3890
- n->fk_upd_action = (char ) ($10 >> 8 );
3891
- n->fk_del_action = (char ) ($10 & 0xFF );
3886
+ n->pktable = $7 ;
3887
+ n->fk_attrs = $4 ;
3888
+ n->pk_attrs = $8 ;
3889
+ n->fk_matchtype = $9 ;
3890
+ n->fk_upd_action = (char ) ($10 >> 8 );
3891
+ n->fk_del_action = (char ) ($10 & 0xFF );
3892
3892
processCASbits ($11 , @11 , " FOREIGN KEY" ,
3893
3893
&n->deferrable, &n->initdeferred,
3894
3894
&n->skip_validation, NULL ,
@@ -5747,7 +5747,7 @@ DefineStmt:
5747
5747
{
5748
5748
CreateRangeStmt *n = makeNode(CreateRangeStmt);
5749
5749
n->typeName = $3 ;
5750
- n->params = $6 ;
5750
+ n->params = $6 ;
5751
5751
$$ = (Node *)n;
5752
5752
}
5753
5753
| CREATE TEXT_P SEARCH PARSER any_name definition
0 commit comments