summaryrefslogtreecommitdiff
path: root/src/backend/commands/indexcmds.c
AgeCommit message (Expand)Author
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-09-20HOT updates. When we update a tuple without changing any of its indexedTom Lane
2007-09-10Make CLUSTER and REINDEX silently skip remote temp tables in theirAlvaro Herrera
2007-09-07Allow CREATE INDEX CONCURRENTLY to disregard transactions in otherTom Lane
2007-09-05Implement lazy XID allocation: transactions that do not modify any databaseTom Lane
2007-08-25Fix brain fade in DefineIndex(): it was continuing to access the table'sTom Lane
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-06-23Separate parse-analysis for utility commands out of parser/analyze.cTom Lane
2007-06-03Create a GUC parameter temp_tablespaces that allows selection of theTom Lane
2007-05-02Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalidTom Lane
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-03-06Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-01-25Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian
2007-01-20Simplify pg_am representation of ordering-capable access methods:Tom Lane
2007-01-09Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-23Restructure operator classes to allow improved handling of cross-data-typeTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-08-27Add a function GetLockConflicts() to lock.c to report xacts holdingTom Lane
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-07-31Change the bootstrap sequence so that toast tables for system catalogs areTom Lane
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-11Alphabetically order reference to include files, "G" - "M".Bruce Momjian
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Add FILLFACTOR to CREATE INDEX.Bruce Momjian
2006-06-07Have REINDEX use NOTICE, so it can be suppressed.Bruce Momjian
2006-06-07Use INFO-level for reindex messages, rather than NOTICE.Bruce Momjian
2006-05-10Clean up code associated with updating pg_class statistics columnsTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-02-10Change search for default operator classes so that it examines all opclassesTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-07R-tree is dead ... long live GiST.Tom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-06-22Make REINDEX DATABASE do what one would expect, namely reindex all indexesTom Lane
2005-06-21Trivial dead code removal: in makeObjectName(), name1 must be non-NULLNeil Conway
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-05Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane
2004-09-13Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-04Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-10Clean up generation of default names for constraints, indexes, and serialTom Lane
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-08Get rid of cluster.c's apparatus for rebuilding a relation's indexesTom Lane
2004-05-05ALTER TABLE rewrite. New cool stuff:Tom Lane