]> granicus.if.org Git - postgresql/commit
Remove misplaced sanity check from heap_create().
authorRobert Haas <rhaas@postgresql.org>
Thu, 14 Jun 2012 13:58:53 +0000 (09:58 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 14 Jun 2012 13:58:53 +0000 (09:58 -0400)
commita475c6036752c26dca538632b68fd2cc592976b7
treed6396fceca29a112638d621ea71eed61282ada00
parentd2c86a1ccd17145eeed2377ff7930e2ccbf5869e
Remove misplaced sanity check from heap_create().

Even when allow_system_table_mods is not set, we allow creation of any
type of SQL object in pg_catalog, except for relations.  And you can
get relations into pg_catalog, too, by initially creating them in some
other schema and then moving them with ALTER .. SET SCHEMA.  So this
restriction, which prevents relations (only) from being created in
pg_catalog directly, is fairly pointless.  If we need a safety mechanism
for this, it should be placed further upstream, so that it affects all
SQL objects uniformly, and picks up both CREATE and SET SCHEMA.

For now, just rip it out, per discussion with Tom Lane.
src/backend/bootstrap/bootparse.y
src/backend/catalog/heap.c
src/backend/catalog/index.c
src/include/catalog/heap.h