OSDN Git Service

Add new CREATE CONVERSION/DROP CONVERSION command.
authorTatsuo Ishii <ishii@postgresql.org>
Thu, 11 Jul 2002 07:39:28 +0000 (07:39 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Thu, 11 Jul 2002 07:39:28 +0000 (07:39 +0000)
commitfcc962566a7cf0461778c97ef713fa4855303dfe
tree507fb3d31a7cba6a6258b40ec5c9364f3ec9a3a6
parentf2bb1cfa85eba18b185c8883a8da6077f7888ec2
Add new CREATE CONVERSION/DROP CONVERSION command.
This is the first cut toward CREATE CONVERSION/DROP CONVERSION implementaion.
The commands can now add/remove tuples to the new pg_conversion system
catalog, but that's all. Still need work to make them actually working.
Documentations, regression tests also need work.
19 files changed:
src/backend/catalog/Makefile
src/backend/catalog/indexing.c
src/backend/catalog/pg_conversion.c [new file with mode: 0644]
src/backend/commands/Makefile
src/backend/commands/conversioncmds.c [new file with mode: 0644]
src/backend/parser/gram.y
src/backend/parser/keywords.c
src/backend/tcop/postgres.c
src/backend/tcop/utility.c
src/backend/utils/cache/syscache.c
src/include/catalog/catname.h
src/include/catalog/catversion.h
src/include/catalog/indexing.h
src/include/catalog/pg_conversion.h [new file with mode: 0644]
src/include/commands/conversioncmds.h [new file with mode: 0644]
src/include/nodes/nodes.h
src/include/nodes/parsenodes.h
src/include/utils/syscache.h
src/test/regress/expected/sanity_check.out