summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2006-01-13Document that CREATE OPERATOR CLASS amounts to granting public executeTom Lane
2006-01-13Require the issuer of CREATE TYPE to own the functions mentioned in theTom Lane
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane
2006-01-08Add a new system view, pg_prepared_statements, that can be used toNeil Conway
2006-01-05Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut
2006-01-04Fix another case in which autovacuum would fail while analyzingTom Lane
2005-12-28Add regression tests for CSV and \., and add automatic quoting of aBruce Momjian
2005-12-27Our code had:Bruce Momjian
2005-12-23Allow CREATE/ALTER ROLE PASSWORD NULL to allow restoring the default statePeter Eisentraut
2005-12-14Defend against crash while processing Describe Statement or Describe PortalTom Lane
2005-12-03Tweak indexscan machinery to avoid taking an AccessShareLock on an indexTom Lane
2005-11-29Fix EXPLAIN and EXECUTE commands to pass portal parameters through toTom Lane
2005-11-26Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-22 DROP DATABASE IF EXISTS variantAndrew Dunstan
2005-11-21Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera
2005-11-20Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane
2005-11-19DROP objecttype IF EXISTS for the following objects:Andrew Dunstan
2005-11-07R-tree is dead ... long live GiST.Tom Lane
2005-11-04Disregard superuserness when checking to see if a role GRANT wouldTom Lane
2005-11-03Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera
2005-10-29Message correctionsPeter Eisentraut
2005-10-21Fix EXPLAIN ANALYZE bug noted by Wiebe Cazemier: although we wereTom Lane
2005-10-18A few trivial code cleanups motivated by reading warnings generatedTom Lane
2005-10-17Clean up libpq's pollution of application namespace by renaming theTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-10Use a safer order of operations in dropdb(): rollbackable operations,Tom Lane
2005-10-06Minor API cleanup for async notifications: we can only register theNeil Conway
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