summaryrefslogtreecommitdiff
path: root/src/backend/commands/command.c
AgeCommit message (Expand)Author
2001-05-30These patches should fix check constraints not inheritingBruce Momjian
2001-05-30Attached is my patch that adds DROP CONSTRAINT support to PostgreSQL. IBruce Momjian
2001-05-27Make UPDATE and DELETE privileges distinct. Add REFERENCES and TRIGGERPeter Eisentraut
2001-05-21Enhancement of SPI to get access to portalsJan Wieck
2001-05-09 This patch should catch cases where the typesBruce Momjian
2001-05-07Rewrite of planner statistics-gathering code. ANALYZE is now available asTom Lane
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-02-27Tweak portal (cursor) code so that it will not call the executor againTom Lane
2001-02-14Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane
2001-01-29Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-23Fix all the places that called heap_update() and heap_delete() withoutTom Lane
2001-01-23Rename int4 to int32 in a few places.Bruce Momjian
2001-01-08Keep relations open until they are no longer needed.Hiroshi Inoue
2001-01-07Clean up checking of relkind for ALTER TABLE and LOCK TABLE commands.Tom Lane
2000-12-22Small cleanup of temp-table handling. Disallow creation of a non-tempTom Lane
2000-12-05From Stephan Szabo:Tom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-14Fix illegal combination of SearchSysCacheTuple() and heap_freetuple()Hiroshi Inoue
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-11-08Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane
2000-10-26Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane
2000-10-16Remove NO_SECURITY define.Bruce Momjian
2000-10-10This is a stupid garden variety bug and I'm not sure why I didn't catchBruce Momjian
2000-10-05Add proofreader's changes to docs.Bruce Momjian
2000-09-29Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane
2000-09-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-09-12This patch implements the following command:Bruce Momjian
2000-09-12This patch implements a different "relkind"Bruce Momjian
2000-09-12Previous patch backed out.Bruce Momjian
2000-09-12This patch is for the TODO itemBruce Momjian
2000-09-06Code cleanup of user name and user id handling in the backend. The currentPeter Eisentraut
2000-08-29This is mostly the same as an earlier patch IBruce Momjian
2000-08-25Avoid creating a TOAST table if we can prove that the maximum tupleTom Lane
2000-08-21fmgr interface mopup work. Use new DatumGetBool and BoolGetDatumTom Lane
2000-08-04Fix tuptoaster bugs induced by making bytea toastable. Durn thing wasTom Lane
2000-08-03Modify heap_open()/heap_openr() API per pghackers discussion of 11 July.Tom Lane
2000-08-03More functions updated to new fmgr style --- money, name, tid datatypes.Tom Lane
2000-07-18'const' decorations are fine, but not when they're inserted withoutTom Lane
2000-07-15This should be a slighly more complete patch for commands/command.cBruce Momjian
2000-07-14Cleanup of code for creating index entries. Functional indexes withTom Lane
2000-07-05Update textin() and textout() to new fmgr style. This is just phaseTom Lane
2000-07-05Changed TOAST relations to have relkind RELKIND_TOASTVALUE.Jan Wieck
2000-07-05Small fix for ALTER TABLE xxx* ADD COLUMN ...Jan Wieck
2000-07-05Automatically create toast tables on ALTER TABLE ... ADD COLUMNJan Wieck
2000-07-05Bugfix in ALTER TABLE CREATE TOAST TABLEJan Wieck
2000-07-04Make toast-table creation and deletion work somewhat reliably.Tom Lane
2000-07-03TOASTJan Wieck