1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

Remove ALL from CLUSTER ALL. Use just CLUSTER.

This commit is contained in:
Bruce Momjian
2002-11-18 17:12:07 +00:00
parent 72cf681383
commit c4501ec551
3 changed files with 10 additions and 10 deletions

View File

@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.379 2002/11/15 03:09:35 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.380 2002/11/18 17:12:07 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -3762,7 +3762,7 @@ CreateConversionStmt:
* QUERY:
* cluster <index_name> on <qualified_name>
* cluster <qualified_name>
* cluster ALL
* cluster
*
*****************************************************************************/
@ -3781,7 +3781,7 @@ ClusterStmt:
n->indexname = NULL;
$$ = (Node*)n;
}
| CLUSTER ALL
| CLUSTER
{
ClusterStmt *n = makeNode(ClusterStmt);
n->relation = NULL;