summaryrefslogtreecommitdiff
path: root/src/backend/commands/command.c
AgeCommit message (Expand)Author
2002-03-06Modify ALTER TABLE OWNER to change index ownership; code cleanup.Bruce Momjian
2002-03-06Change made to elog:Bruce Momjian
2002-03-05I attach a version of my toast-slicing patch, against current CVSBruce Momjian
2002-03-02Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian
2002-02-27Clean up BeginCommand and related routines. BeginCommand and EndCommandTom Lane
2002-02-26Restructure command-completion-report code so that there is just oneTom Lane
2002-02-19A bunch of changes aimed at reducing backend startup time...Tom Lane
2002-02-14Ensure that a cursor is scanned under the same scanCommandId it wasTom Lane
2002-01-03Require ownership permission for CREATE INDEX, per bug report.Tom Lane
2001-12-04Remove now-dead code for processing CONSTR_UNIQUE nodes inTom Lane
2001-11-05New pgindent run with fixes suggested by Tom. Patch manually reviewed,Bruce Momjian
2001-11-02Fix problem reported by Alex Korn: if a relation has been dropped andTom Lane
2001-10-31Add ALTER TABLE ADD UNIQUE regression tests from Christopher Kings-Lynne.Bruce Momjian
2001-10-28Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-10-23Fix foreign keys on system columns.Tom Lane
2001-10-12Break transformCreateStmt() into multiple routines and makeTom Lane
2001-10-05Further cleanup of dynahash.c API, in pursuit of portability andTom Lane
2001-09-07Here is my much-promised patch to let people add UNIQUE constraints afterBruce Momjian
2001-08-21Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane
2001-08-10Patch to LOCK multiple tables in one LOCK command.Bruce Momjian
2001-08-04Back out LOCK A,B,C patch at Tom's suggestion.Bruce Momjian
2001-08-04Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed.Bruce Momjian
2001-07-16Partial indexes work again, courtesy of Martijn van Oosterhout.Tom Lane
2001-07-15Restructure index AM interface for index building and index tuple deletion,Tom Lane
2001-06-14has_table_privilege functions from Joe Conway (with some kibitzing fromTom Lane
2001-06-12Clean up various to-do items associated with system indexes:Tom Lane
2001-06-07This adds unary plus capability. No grammar changes, per Tom's request.Bruce Momjian
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