diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 05:22:04 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 05:22:04 +0000 |
commit | 71dc300a375f4932693b064b161a400448c9bc2e (patch) | |
tree | ab20c095125a6eab33644befd187f936cf4fd093 /src/backend/commands/cluster.c | |
parent | ab1ead6b9761531787c78e0c80daf98b421ac06f (diff) | |
download | postgresql-71dc300a375f4932693b064b161a400448c9bc2e.tar.gz postgresql-71dc300a375f4932693b064b161a400448c9bc2e.zip |
The contents of command.c, creatinh.c, define.c, remove.c and rename.c
have been divided according to the type of object manipulated - so ALTER
TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and
so on.
A few common support routines remain in define.c (prototypes in
src/include/commands/defrem.h).
No code has been changed except for includes to reflect the new files.
The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c,
and typecmds.c remain in src/include/commands/defrem.h.
From John Gray <jgray@azuli.co.uk>
Diffstat (limited to 'src/backend/commands/cluster.c')
-rw-r--r-- | src/backend/commands/cluster.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c index aad5361b6b8..8883eddc49f 100644 --- a/src/backend/commands/cluster.c +++ b/src/backend/commands/cluster.c @@ -15,7 +15,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.77 2002/03/31 07:49:30 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.78 2002/04/15 05:22:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,8 +29,7 @@ #include "catalog/pg_index.h" #include "catalog/pg_proc.h" #include "commands/cluster.h" -#include "commands/command.h" -#include "commands/rename.h" +#include "commands/tablecmds.h" #include "miscadmin.h" #include "utils/builtins.h" #include "utils/lsyscache.h" |