summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2004-07-21Invent WAL timelines, as per recent discussion, to make point-in-timeTom Lane
2004-07-20Fix unused variable when Assert() not used.Bruce Momjian
2004-07-19XLOG file archiving and point-in-time recovery. There are still someTom Lane
2004-07-17When renaming a column that participates in a foreign key, we mustTom Lane
2004-07-17Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane
2004-07-12Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane
2004-07-11ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane
2004-07-11Move TablespaceCreateDbspace() call into smgrcreate(), which is where itTom Lane
2004-07-02Andreas Pflug wrote:Joe Conway
2004-07-01Nested transactions. There is still much left to do, especially on theTom Lane
2004-06-25Support renaming of tablespaces, and changing the owners ofTom Lane
2004-06-21Rename the built-in tablespaces to pg_default and pg_global, and prohibitTom Lane
2004-06-21Rename pg_tablespaces directory to pg_tblspc, so it is more unique fromBruce Momjian
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-16Represent type-specific length coercion functions as pg_cast entries,Tom Lane
2004-06-11When using extended-query protocol, postpone planning of unnamed statementsTom Lane
2004-06-10Attached is a patch that takes care of the PATHSEP issue. I made a moreBruce Momjian
2004-06-10Make ALTER TABLE ADD SERIAL work reasonably in inheritance cases, too.Tom Lane
2004-06-10Fix oversight in recent ALTER TABLE improvements. We now supportTom Lane
2004-06-10Clean up generation of default names for constraints, indexes, and serialTom Lane
2004-06-08vacuum.c refactoringBruce Momjian
2004-06-06Allow use of table rowtypes directly as column types of other tables.Tom Lane
2004-06-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2004-06-05Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane
2004-06-04Resurrect heap_deformtuple(), this time implemented as a singly nestedTom Lane
2004-06-02OK, here's the final version of ALTER TABLE ... SET WITHOUT CLUSTER.Bruce Momjian
2004-05-31Minor code rationalization: FlushRelationBuffers just returns void,Tom Lane
2004-05-26This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-23Avoid calling select_default_timezone() when backing out an unwanted TZTom Lane
2004-05-23New two-stage sampling method for ANALYZE, as per discussions a few weeksTom Lane
2004-05-23Handle impending sinval queue overflow by means of a separate signalTom Lane
2004-05-22For multi-table ANALYZE, use per-table transactions when possibleTom Lane
2004-05-22Reduce pg_listener lock taken by NOTIFY et al from AccessExclusiveLockTom Lane
2004-05-21Put back #include <sys/time.h> in files that seem to need it on Linux.Tom Lane
2004-05-21Integrate src/timezone library for all platforms. There is more we canTom Lane
2004-05-14Tighten parsing of boolean options to CREATE TYPE and related functions,Tom Lane
2004-05-08Fix a couple of oversights in new ALTER TABLE code that brokeTom Lane
2004-05-08Get rid of rd_nblocks field in relcache entries. Turns out this wasTom Lane
2004-05-08Get rid of cluster.c's apparatus for rebuilding a relation's indexesTom Lane
2004-05-07Solve the 'Turkish problem' with undesirable locale behavior for caseTom Lane
2004-05-06Erase MD5 user passwords when a user is renamed because the username isBruce Momjian
2004-05-06Make ALTER COLUMN TYPE preserve clustered status for indexes it doesn'tTom Lane
2004-05-05Fix get_rels_with_domain to not do the wrong thing with views andTom Lane
2004-05-05ALTER TABLE rewrite. New cool stuff:Tom Lane
2004-04-25Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, removeNeil Conway
2004-04-22This patch makes the EXECUTE command's completion tag return theBruce Momjian
2004-04-21Change COPY CSV keyword to be:Bruce Momjian
2004-04-19Prevent doubling of escapes when not in quote mode for CSV.Bruce Momjian
2004-04-19* Most changes are to fix warnings issued when compiling win32Bruce Momjian