The contents of command.c, creatinh.c, define.c, remove.c and rename.c
authorTom Lane
Mon, 15 Apr 2002 05:22:04 +0000 (05:22 +0000)
committerTom Lane
Mon, 15 Apr 2002 05:22:04 +0000 (05:22 +0000)
commit71dc300a375f4932693b064b161a400448c9bc2e
treeab20c095125a6eab33644befd187f936cf4fd093
parentab1ead6b9761531787c78e0c80daf98b421ac06f
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 
29 files changed:
src/backend/commands/Makefile
src/backend/commands/aggregatecmds.c [new file with mode: 0644]
src/backend/commands/cluster.c
src/backend/commands/creatinh.c [deleted file]
src/backend/commands/define.c
src/backend/commands/functioncmds.c [new file with mode: 0644]
src/backend/commands/lockcmds.c [new file with mode: 0644]
src/backend/commands/operatorcmds.c [new file with mode: 0644]
src/backend/commands/portalcmds.c [new file with mode: 0644]
src/backend/commands/proclang.c
src/backend/commands/remove.c [deleted file]
src/backend/commands/rename.c [deleted file]
src/backend/commands/schemacmds.c [new file with mode: 0644]
src/backend/commands/sequence.c
src/backend/commands/tablecmds.c [moved from src/backend/commands/command.c with 52% similarity]
src/backend/commands/typecmds.c [new file with mode: 0644]
src/backend/commands/view.c
src/backend/executor/execMain.c
src/backend/executor/spi.c
src/backend/tcop/pquery.c
src/backend/tcop/utility.c
src/include/commands/command.h [deleted file]
src/include/commands/creatinh.h [deleted file]
src/include/commands/defrem.h
src/include/commands/lockcmds.h [new file with mode: 0644]
src/include/commands/portalcmds.h [new file with mode: 0644]
src/include/commands/rename.h [deleted file]
src/include/commands/schemacmds.h [new file with mode: 0644]
src/include/commands/tablecmds.h [new file with mode: 0644]