pgsql-server/ oc/src/sgml/ref/create_type.sgml ...

Started by Bruce Momjianalmost 24 years ago1 messagescomitters
Jump to latest
#1Bruce Momjian
bruce@momjian.us

CVSROOT: /cvsroot
Module name: pgsql-server
Changes by: momjian@postgresql.org 02/08/15 12:36:08

Modified files:
doc/src/sgml/ref: create_type.sgml
src/backend/catalog: heap.c namespace.c pg_type.c
src/backend/commands: copy.c tablecmds.c typecmds.c
src/backend/executor: execMain.c
src/backend/nodes: copyfuncs.c equalfuncs.c
src/backend/parser: gram.y
src/backend/storage/buffer: bufmgr.c
src/backend/storage/smgr: smgr.c
src/backend/tcop: postgres.c utility.c
src/backend/utils/adt: tid.c
src/bin/pg_dump: common.c pg_dump.c pg_dump.h
src/bin/psql : describe.c
src/include/catalog: pg_class.h
src/include/commands: defrem.h
src/include/nodes: nodes.h parsenodes.h
src/pl/plpgsql/src: pl_comp.c
src/test/regress/expected: create_type.out
src/test/regress/sql: create_type.sql

Log message:
Tom Lane wrote:

There's no longer a separate call to heap_storage_create in that routine
--- the right place to make the test is now in the storage_create
boolean parameter being passed to heap_create.  A simple change, but
it passeth patch's understanding ...

Thanks.

Attached is a patch against cvs tip as of 8:30 PM PST or so. Turned out
that even after fixing the failed hunks, there was a new spot in
bufmgr.c which needed to be fixed (related to temp relations;
RelationUpdateNumberOfBlocks). But thankfully the regression test code
caught it :-)

Joe Conway