summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2005-10-03COPY's test for read-only transaction was backward; it prohibited COPY TOTom Lane
2005-10-03Separate out the VacRUsage stuff as an independent module, in preparationTom Lane
2005-10-03Preserve tuple OIDs during ATRewriteTable. Per gripe from Duncan Crombie.Tom Lane
2005-10-02Change nextval and other sequence functions to specify their sequenceTom Lane
2005-09-24Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane
2005-09-24Suppress signed-vs-unsigned-char warnings.Tom Lane
2005-09-22Take exclusive buffer lock in scan_heap() to eliminate some corner casesTom Lane
2005-09-08Create the pg_pltemplate system catalog to hold template informationTom Lane
2005-09-05Implement a preliminary 'template' facility for procedural languages,Tom Lane
2005-09-02Clean up a couple of ad-hoc computations of the maximum number of tuplesTom Lane
2005-09-01Fix unportable uses of <ctype.h> functions. Per Sergey Koposov.Tom Lane
2005-08-30DropTableSpace forgot to remove dependency on tablespace's owner.Tom Lane
2005-08-26Arrange for indexes and toast tables to inherit their ownership fromTom Lane
2005-08-24Fix ExecBRDeleteTriggers so that deletion is not suppressed when deleteTom Lane
2005-08-23Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane
2005-08-23Fix wrong dependency on owner created by ALTER OPCLASS OWNER.Tom Lane
2005-08-22Cause ALTER INDEX OWNER to generate a warning and do nothing, rather thanTom Lane
2005-08-22Fix unwanted denial of ALTER OWNER rights to superusers. There was someTom Lane
2005-08-20Convert the arithmetic for shared memory size calculation from 'int'Tom Lane
2005-08-20Repair problems with VACUUM destroying t_ctid chains too soon, and withTom Lane
2005-08-12Solve the problem of OID collisions by probing for duplicate OIDsTom Lane
2005-08-08Fix crash when reading 'timezone = unknown' from postgresql.conf duringTom Lane
2005-08-06COPY performance improvements. Avoid calling CopyGetData for each inputTom Lane
2005-08-04ALTER TABLE OWNER must change the ownership of the table's rowtype too.Tom Lane
2005-08-02Clean up CREATE DATABASE processing to make it more robust and get ridTom Lane
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-08-01Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-29Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane
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