summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2005-07-26Minor correction: cause ALTER ROLE role ROLE rolenames to behaveTom Lane
2005-07-26Add a role property 'rolinherit' which, when false, denotes that the roleTom Lane
2005-07-25Add SET ROLE. This is a partial commit of Stephen Frost's recent patch;Tom Lane
2005-07-21Add time/date macros for code clarity:Bruce Momjian
2005-07-20Add 'day' field to INTERVAL so 1 day interval can be distinguished fromBruce Momjian
2005-07-14Adjust permissions checking for ALTER OWNER commands: instead ofTom Lane
2005-07-14Integrate autovacuum functionality into the backend. There's still aTom Lane
2005-07-10Change typreceive function API so that receive functions get the sameTom Lane
2005-07-08Remove some dead code for handling XLOG_DBASE_CREATE_OLD andNeil Conway
2005-07-07Track dependencies on shared objects (which is to say, roles; we alreadyTom Lane
2005-07-04Arrange for the postmaster (and standalone backends, initdb, etc) toTom Lane
2005-06-30Improve the checkpoint signaling mechanism so that the bgwriter can tellTom Lane
2005-06-29More cleanup on roles patch. Allow admin option to be inherited throughTom Lane
2005-06-28Fix up problems in write_auth_file and parsing of the auth file.Tom Lane
2005-06-28Bring syntax of role-related commands into SQL compliance. To avoidTom Lane
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-25Force a checkpoint before committing a CREATE DATABASE command. ThisTom Lane
2005-06-22Make REINDEX DATABASE do what one would expect, namely reindex all indexesTom Lane
2005-06-22Fix the mechanism for reporting the original table OID and column numberTom Lane
2005-06-21Cause initdb to create a third standard database "postgres", whichTom Lane
2005-06-21Trivial dead code removal: in CreateSchemaCommand(), 'owner_name' isNeil Conway
2005-06-21Trivial dead code removal: in makeObjectName(), name1 must be non-NULLNeil Conway
2005-06-19Simplify uses of readdir() by creating a function ReadDir() thatTom Lane
2005-06-17Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane
2005-06-14Simplify shared-memory lock data structures as per recent discussion:Tom Lane
2005-06-09Fix assign_datestyle() so that it doesn't misleadingly complain aboutTom Lane
2005-06-07Add a function lastval(), which returns the value returned by theNeil Conway
2005-06-06Modify XLogInsert API to make callers specify whether pages to be backedTom Lane
2005-06-06Remove the mostly-stubbed-out-anyway support routines for WAL UNDO.Tom Lane
2005-06-05Code for SET/SHOW TIME ZONE with a fixed-interval timezone was notTom Lane
2005-06-05Replace the parser's namespace tree (which formerly had the sameTom Lane
2005-06-04Remove unused 'printCost' field from ExplainState, and simplify the codeNeil Conway
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-06-02Add support for \x hex escapes in COPY.Bruce Momjian
2005-05-30When enqueueing after-row triggers for updates of a table with a foreignNeil Conway
2005-05-30Create separate ON INSERT and ON UPDATE triggers on tables with foreignNeil Conway
2005-05-29Modify hash_search() API to prevent future occurrences of the errorTom Lane
2005-05-27Remove second argument from textToQualifiedNameList(), as it is no longerNeil Conway
2005-05-24Log queries for client-side prepare/execute. Simon RiggsBruce Momjian
2005-05-19Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane
2005-05-10Back out check for unreferenced files.Bruce Momjian
2005-05-10Report index name on CLUSTER failure. Also, suggest ALTER TABLEBruce Momjian
2005-05-07Repair very-low-probability race condition between relation extensionTom Lane
2005-05-07Add COPY WITH CVS HEADER to allow a heading line as the first line inBruce Momjian
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-05-06Convert some mulit-line comments in copy.c to single line, as appropriate.Bruce Momjian
2005-05-03Alter the signature for encoding conversion functions to declare theTom Lane
2005-05-02Check the file system on postmaster startup and report any unreferencedBruce Momjian
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane