aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/conversioncmds.c
Commit message (Collapse)AuthorAge
* Fix permissions-checking bugs and namespace-search-path bugs inTom Lane2002-11-02
| | | | | CONVERSION code. Still need to figure out what to do about inappropriate coding in parsing.
* pgindent run.Bruce Momjian2002-09-04
|
* Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane2002-08-22
| | | | | | with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ...
* Implement DROP CONVERSIONTatsuo Ishii2002-07-25
| | | | Add regression test
* Add new CREATE CONVERSION/DROP CONVERSION command.Tatsuo Ishii2002-07-11
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.