CVSROOT: /cvsroot
Module name: pgsql
Changes by: [email protected] 02/07/11 03:39:28
Modified files:
src/backend/parser: gram.y keywords.c
src/backend/tcop: utility.c postgres.c
src/backend/commands: Makefile
src/backend/catalog: Makefile indexing.c
src/backend/utils/cache: syscache.c
src/include/nodes: parsenodes.h nodes.h
src/include/catalog: catname.h catversion.h indexing.h
src/include/utils: syscache.h
src/test/regress/expected: sanity_check.out
Added files:
src/backend/commands: conversioncmds.c
src/backend/catalog: pg_conversion.c
src/include/commands: conversioncmds.h
src/include/catalog: pg_conversion.h
Log message:
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.