Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a341db9

Browse files
committed
Cleanup
1 parent e83265b commit a341db9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/parser/gram.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.75 1999/05/17 00:22:07 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.76 1999/05/17 00:31:49 momjian Exp $
1414
*
1515
* HISTORY
1616
* AUTHOR DATE MAJOR EVENT
@@ -2597,7 +2597,7 @@ LockStmt: LOCK_P opt_table relation_name IN opt_lock
25972597
LockStmt *n = makeNode(LockStmt);
25982598

25992599
n->relname = $3;
2600-
n->mode = $4;
2600+
n->mode = $5;
26012601
$$ = (Node *)n;
26022602
}
26032603
;

0 commit comments

Comments
 (0)