summaryrefslogtreecommitdiff
path: root/src/backend/commands
Commit message (Expand)AuthorAgeFilesLines
* Reduce amount of memory used per tuple for after-event triggers. ThisTom Lane2001-03-141-23/+24
* COPY should handle after-insert triggers the same as execMain.c does.Tom Lane2001-03-141-5/+4
* ifdef out reindex stuff in VACUUM for safety.Hiroshi Inoue2001-03-141-1/+9
* Avoid O(N^2) behavior in deferredTriggerAddEvent() for large numbers ofTom Lane2001-03-121-8/+23
* Repair a number of places that didn't bother to check whether PageAddItemTom Lane2001-03-071-2/+3
* Tweak portal (cursor) code so that it will not call the executor againTom Lane2001-02-271-19/+41
* Reindex of shared system indexes must be overwrite mode.Hiroshi Inoue2001-02-231-2/+5
* Clean up two rather nasty bugs in operator selection code.Tom Lane2001-02-161-11/+16
* Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane2001-02-141-3/+2
* Added some comments to setval, setval_is_called and do_setvalPhilip Warner2001-02-131-1/+22
* Rearrange order of operations in heap_create_with_catalog so that ifTom Lane2001-02-121-2/+4
* Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane2001-01-292-15/+15
* Looks like I broke cases involving combinations of deferred update/deleteTom Lane2001-01-271-31/+50
* Suppress coredump when EXPLAINing query that is rewritten to includeTom Lane2001-01-271-2/+12
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-2421-42/+42
* Narrow scope of critical section, per discussion 1/19/01.Tom Lane2001-01-231-2/+2
* Fix all the places that called heap_update() and heap_delete() withoutTom Lane2001-01-2311-55/+55
* Rename int4 to int32 in a few places.Bruce Momjian2001-01-232-3/+3
* Clean up per-tuple memory leaks in trigger firing and plpgsqlTom Lane2001-01-222-33/+63
* Make critical sections (elog->crash) and interrupt holdoff sectionsTom Lane2001-01-191-8/+7
* Suppress compiler warning in MULTIBYTE case.Tom Lane2001-01-191-2/+2
* Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian2001-01-171-3/+4
* Need to do BufferSync at end of DROP DATABASE as well as CREATE DATABASE.Tom Lane2001-01-141-3/+13
* Restructure backend SIGINT/SIGTERM handling so that 'die' interruptsTom Lane2001-01-143-14/+7
* Add more critical-section calls: all code sections that hold spinlocksTom Lane2001-01-122-14/+14
* Preserve constraints and column defaults during CLUSTER.Tom Lane2001-01-121-2/+2
* Do The Right Thing (tm) if asked to cluster a temp table. PreviousTom Lane2001-01-101-8/+17
* Keep relations open until they are no longer needed.Hiroshi Inoue2001-01-081-2/+3
* Clean up checking of relkind for ALTER TABLE and LOCK TABLE commands.Tom Lane2001-01-071-91/+39
* Fix copy to make it more robust against unexpected characterTatsuo Ishii2001-01-061-25/+39
* Disallow creation of a child table by a user who does not own the parentTom Lane2001-01-051-1/+8
* New file format for COPY BINARY, in accordance with pghackers discussionsTom Lane2001-01-031-179/+249
* MakeRetrieveViewRuleName was scribbling on memory that didn't belongTom Lane2001-01-031-10/+11
* CLUSTER forgot to create a TOAST table for the clustered relation.Tom Lane2001-01-011-6/+17
* 1. WAL needs in zero-ed content of newly initialized page.Vadim B. Mikheev2000-12-301-10/+22
* New WAL version - CRC and data blocks backup.Vadim B. Mikheev2000-12-282-71/+107
* Fix portability problems recently exposed by regression tests on Alphas.Tom Lane2000-12-271-55/+7
* Small cleanup of temp-table handling. Disallow creation of a non-tempTom Lane2000-12-223-12/+16
* Revise lock manager to support "session level" locks as well as "transactionTom Lane2000-12-221-41/+49
* Fix longstanding bug with VIEW using BETWEEN: OffsetVarNodes would getTom Lane2000-12-211-28/+29
* Ensure that 'errno' is saved and restored by all signal handlers thatTom Lane2000-12-181-1/+4
* Clean up backend-exit-time cleanup behavior. Use on_shmem_exit callbacksTom Lane2000-12-181-4/+2
* Remove a few remaining vestiges of elog(WARN).Tom Lane2000-12-152-5/+5
* Change StoreCatalogInheritance() to work from a list of parent relationTom Lane2000-12-141-64/+55
* Add missing copyright and RCS identification header.Tom Lane2000-12-081-2/+8
* Remove error check that disallowed setval() on a sequence with cacheTom Lane2000-12-081-14/+6
* Cache invalidation for vacuum of system tables.Hiroshi Inoue2000-12-081-1/+6
* REINDEX under WAL.Hiroshi Inoue2000-12-081-2/+6
* From Stephan Szabo:Tom Lane2000-12-051-15/+22
* Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane2000-12-034-13/+13