summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
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
2000-12-02Avoid repeated detoasting (and possible memory leaks) when processingTom Lane
2000-11-30No more #ifdef XLOG.Vadim B. Mikheev
2000-11-30XLOG stuff for sequences.Vadim B. Mikheev
2000-11-28Significant cleanups in SysV IPC handling (shared mem and semaphores).Tom Lane
2000-11-21Put external declarations into header files.Peter Eisentraut
2000-11-20Revise handling of oldstyle/newstyle functions per recent discussionsTom Lane
2000-11-18Put back BufferSync() for WAL after database creation.Tom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-16Make pgsql compile on FreeBSD-alpha.Bruce Momjian
2000-11-14Extend CREATE DATABASE to allow selection of a template database to beTom Lane
2000-11-14Fix illegal combination of SearchSysCacheTuple() and heap_freetuple()Hiroshi Inoue
2000-11-13SearchSysCacheTupleCopy() instead of SearchSysCache()Hiroshi Inoue
2000-11-12Keep track of the last active slot in the shared ProcState array, soTom Lane
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-11-08Clean up compiler warnings.Tom Lane
2000-11-08Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane
2000-11-08Reimplement alternative database locations with symlinks. No changes inPeter Eisentraut
2000-10-28WALVadim B. Mikheev
2000-10-26Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane
2000-10-26Fix breakage I introduced yesterday in MULTIBYTE compilations.Tom Lane
2000-10-26Clean up gcc warnings in MULTIBYTE mode.Tom Lane
2000-10-25Support SET/SHOW/RESET client_encoding and server_encoding even whenTom Lane
2000-10-24WAL miscVadim B. Mikheev
2000-10-22Some small polishing of Mark Hollomon's cleanup of DROP command: mightTom Lane
2000-10-22Patch VACUUM problem with moving chain of update tuples when sourceTom Lane