summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2001-03-14ifdef out reindex stuff in VACUUM for safety.Hiroshi Inoue
2001-03-12Avoid O(N^2) behavior in deferredTriggerAddEvent() for large numbers ofTom Lane
2001-03-07Repair a number of places that didn't bother to check whether PageAddItemTom Lane
2001-02-27Tweak portal (cursor) code so that it will not call the executor againTom Lane
2001-02-23Reindex of shared system indexes must be overwrite mode.Hiroshi Inoue
2001-02-16Clean up two rather nasty bugs in operator selection code.Tom Lane
2001-02-14Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane
2001-02-13Added some comments to setval, setval_is_called and do_setvalPhilip Warner
2001-02-12Rearrange order of operations in heap_create_with_catalog so that ifTom Lane
2001-01-29Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane
2001-01-27Looks like I broke cases involving combinations of deferred update/deleteTom Lane
2001-01-27Suppress coredump when EXPLAINing query that is rewritten to includeTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-23Narrow scope of critical section, per discussion 1/19/01.Tom Lane
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-22Clean up per-tuple memory leaks in trigger firing and plpgsqlTom Lane
2001-01-19Make critical sections (elog->crash) and interrupt holdoff sectionsTom Lane
2001-01-19Suppress compiler warning in MULTIBYTE case.Tom Lane
2001-01-17Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian
2001-01-14Need to do BufferSync at end of DROP DATABASE as well as CREATE DATABASE.Tom Lane
2001-01-14Restructure backend SIGINT/SIGTERM handling so that 'die' interruptsTom Lane
2001-01-12Add more critical-section calls: all code sections that hold spinlocksTom Lane
2001-01-12Preserve constraints and column defaults during CLUSTER.Tom Lane
2001-01-10Do The Right Thing (tm) if asked to cluster a temp table. PreviousTom Lane
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
2001-01-06Fix copy to make it more robust against unexpected characterTatsuo Ishii
2001-01-05Disallow creation of a child table by a user who does not own the parentTom Lane
2001-01-03New file format for COPY BINARY, in accordance with pghackers discussionsTom Lane
2001-01-03MakeRetrieveViewRuleName was scribbling on memory that didn't belongTom Lane
2001-01-01CLUSTER forgot to create a TOAST table for the clustered relation.Tom Lane
2000-12-301. WAL needs in zero-ed content of newly initialized page.Vadim B. Mikheev
2000-12-28New WAL version - CRC and data blocks backup.Vadim B. Mikheev
2000-12-27Fix portability problems recently exposed by regression tests on Alphas.Tom Lane
2000-12-22Small cleanup of temp-table handling. Disallow creation of a non-tempTom Lane
2000-12-22Revise lock manager to support "session level" locks as well as "transactionTom Lane
2000-12-21Fix longstanding bug with VIEW using BETWEEN: OffsetVarNodes would getTom Lane
2000-12-18Ensure that 'errno' is saved and restored by all signal handlers thatTom Lane
2000-12-18Clean up backend-exit-time cleanup behavior. Use on_shmem_exit callbacksTom Lane
2000-12-15Remove a few remaining vestiges of elog(WARN).Tom Lane
2000-12-14Change StoreCatalogInheritance() to work from a list of parent relationTom Lane
2000-12-08Add missing copyright and RCS identification header.Tom Lane
2000-12-08Remove error check that disallowed setval() on a sequence with cacheTom Lane
2000-12-08Cache invalidation for vacuum of system tables.Hiroshi Inoue
2000-12-08REINDEX under WAL.Hiroshi Inoue
2000-12-05From Stephan Szabo:Tom Lane
2000-12-03Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane
2000-12-03Disable elog(ERROR|FATAL) in signal handlers inVadim B. Mikheev
2000-12-02Avoid memory leakage during regular COPY when outputting toasted values.Tom Lane