Support renaming of tablespaces, and changing the owners of

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 0adfa2c39d567394f423c69bfaf467d0d00ee3df
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2004-06-25T21:55:59Z
Releases: 8.0.0
Support renaming of tablespaces, and changing the owners of
aggregates, conversions, functions, operators, operator classes,
schemas, types, and tablespaces.  Fold the existing implementations
of alter domain owner and alter database owner in with these.

Christopher Kings-Lynne

Files

PathChange+/−
doc/src/sgml/ref/allfiles.sgml modified +4 −1
doc/src/sgml/ref/alter_aggregate.sgml modified +21 −3
doc/src/sgml/ref/alter_conversion.sgml modified +20 −2
doc/src/sgml/ref/alter_function.sgml modified +25 −3
doc/src/sgml/ref/alter_opclass.sgml modified +14 −4
doc/src/sgml/ref/alter_operator.sgml added +127 −0
doc/src/sgml/ref/alter_schema.sgml modified +18 −6
doc/src/sgml/ref/alter_tablespace.sgml added +125 −0
doc/src/sgml/ref/alter_type.sgml added +106 −0
doc/src/sgml/ref/create_operator.sgml modified +27 −26
doc/src/sgml/ref/create_schema.sgml modified +4 −2
doc/src/sgml/ref/create_tablespace.sgml modified +5 −2
doc/src/sgml/ref/create_type.sgml modified +2 −1
doc/src/sgml/ref/drop_operator.sgml modified +3 −2
doc/src/sgml/ref/drop_tablespace.sgml modified +2 −1
doc/src/sgml/ref/drop_type.sgml modified +2 −1
doc/src/sgml/reference.sgml modified +4 −1
src/backend/commands/aggregatecmds.c modified +61 −5
src/backend/commands/alter.c modified +70 −1
src/backend/commands/conversioncmds.c modified +53 −1
src/backend/commands/dbcommands.c modified +24 −18
src/backend/commands/functioncmds.c modified +55 −1
src/backend/commands/opclasscmds.c modified +90 −1
src/backend/commands/operatorcmds.c modified +54 −1
src/backend/commands/schemacmds.c modified +46 −1
src/backend/commands/tablecmds.c modified +43 −35
src/backend/commands/tablespace.c modified +121 −1
src/backend/commands/typecmds.c modified +26 −16
src/backend/nodes/copyfuncs.c modified +19 −15
src/backend/nodes/equalfuncs.c modified +17 −13
src/backend/parser/gram.y modified +105 −23
src/backend/tcop/utility.c modified +45 −24
src/include/commands/alter.h modified +4 −2
src/include/commands/conversioncmds.h modified +2 −1
src/include/commands/dbcommands.h modified +2 −2
src/include/commands/defrem.h modified +6 −1
src/include/commands/schemacmds.h modified +2 −1
src/include/commands/tablespace.h modified +4 −1
src/include/nodes/nodes.h modified +2 −2
src/include/nodes/parsenodes.h modified +18 −11