Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit333323f

Browse files
committed
Fix vacuum analyze syntax problem.
1 parent899326a commit333323f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎src/backend/parser/gram.y

Lines changed: 4 additions & 4 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 1.74 1997/12/0202:54:15thomas Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.75 1997/12/0216:09:15momjian Exp $
1414
*
1515
* HISTORY
1616
* AUTHORDATEMAJOR EVENT
@@ -1803,12 +1803,12 @@ VacuumStmt: VACUUM opt_verbose opt_analyze
18031803
n->va_spec = NIL;
18041804
$$ = (Node *)n;
18051805
}
1806-
| VACUUM opt_verboserelation_nameopt_analyze opt_va_list
1806+
| VACUUM opt_verbose opt_analyze relation_name opt_va_list
18071807
{
18081808
VacuumStmt *n = makeNode(VacuumStmt);
18091809
n->verbose = $2;
1810-
n->analyze = $4;
1811-
n->vacrel = $3;
1810+
n->analyze = $3;
1811+
n->vacrel = $4;
18121812
n->va_spec = $5;
18131813
if ( $5 != NIL && !$4 )
18141814
elog(WARN,"parser: syntax error at or near \"(\"",NULL);

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp