First batch of object rename commands.

Peter Eisentraut <peter_e@gmx.net>

Commit: b256f2426433c56b4bea3a8102757749885b81ba
Author: Peter Eisentraut <peter_e@gmx.net>
Date: 2003-06-27T14:45:32Z
Releases: 7.4.1
First batch of object rename commands.

Files

PathChange+/−
doc/src/sgml/ref/allfiles.sgml modified +7 −32
doc/src/sgml/ref/alter_aggregate.sgml added +128 −0
doc/src/sgml/ref/alter_conversion.sgml added +117 −0
doc/src/sgml/ref/alter_database.sgml modified +31 −11
doc/src/sgml/ref/alter_function.sgml added +127 −0
doc/src/sgml/ref/alter_group.sgml modified +30 −9
doc/src/sgml/ref/alter_language.sgml added +107 −0
doc/src/sgml/ref/alter_opclass.sgml added +116 −0
doc/src/sgml/ref/alter_schema.sgml added +108 −0
doc/src/sgml/ref/alter_user.sgml modified +19 −2
doc/src/sgml/ref/create_aggregate.sgml modified +10 −9
doc/src/sgml/ref/create_conversion.sgml modified +6 −5
doc/src/sgml/ref/create_function.sgml modified +2 −1
doc/src/sgml/ref/create_language.sgml modified +10 −11
doc/src/sgml/ref/create_opclass.sgml modified +10 −11
doc/src/sgml/ref/create_schema.sgml modified +11 −5
doc/src/sgml/ref/drop_aggregate.sgml modified +2 −1
doc/src/sgml/ref/drop_conversion.sgml modified +2 −1
doc/src/sgml/ref/drop_function.sgml modified +2 −1
doc/src/sgml/ref/drop_language.sgml modified +3 −1
doc/src/sgml/ref/drop_opclass.sgml modified +2 −1
doc/src/sgml/ref/drop_schema.sgml modified +2 −1
doc/src/sgml/reference.sgml modified +7 −1
src/backend/catalog/aclchk.c modified +38 −1
src/backend/catalog/namespace.c modified +5 −5
src/backend/commands/aggregatecmds.c modified +74 −1
src/backend/commands/alter.c added +159 −0
src/backend/commands/analyze.c modified +2 −2
src/backend/commands/comment.c modified +20 −20
src/backend/commands/conversioncmds.c modified +61 −1
src/backend/commands/dbcommands.c modified +124 −33
src/backend/commands/functioncmds.c modified +67 −1
src/backend/commands/indexcmds.c modified +4 −3
src/backend/commands/Makefile modified +2 −2
src/backend/commands/opclasscmds.c modified +93 −2
src/backend/commands/proclang.c modified +45 −1
src/backend/commands/schemacmds.c modified +58 −2
src/backend/commands/user.c modified +107 −1
src/backend/commands/vacuum.c modified +2 −2
src/backend/nodes/copyfuncs.c modified +4 −2
src/backend/nodes/equalfuncs.c modified +4 −2
src/backend/parser/gram.y modified +119 −45
src/backend/parser/parse_expr.c modified +2 −2
src/backend/parser/parse_target.c modified +2 −2
src/backend/tcop/utility.c modified +78 −95
src/backend/utils/adt/misc.c modified +2 −3
src/backend/utils/init/globals.c modified +1 −3
src/backend/utils/init/miscinit.c modified +1 −17
src/backend/utils/init/postinit.c modified +2 −4
src/backend/utils/misc/superuser.c modified +1 −16
src/include/commands/alter.h added +21 −0
src/include/commands/conversioncmds.h modified +2 −1
src/include/commands/dbcommands.h modified +4 −3
src/include/commands/defrem.h modified +4 −2
src/include/commands/proclang.h modified +1 −0
src/include/commands/schemacmds.h modified +3 −1
src/include/commands/user.h modified +3 −1
src/include/miscadmin.h modified +1 −5
src/include/nodes/parsenodes.h modified +41 −57
src/include/utils/acl.h modified +2 −1