summaryrefslogtreecommitdiff
path: root/src/backend/commands/indexcmds.c
Commit message (Expand)AuthorAgeFilesLines
* First pass at set-returning-functions in FROM, by Joe Conway withTom Lane2002-05-121-2/+3
* Restructure aclcheck error reporting to make permission-failureTom Lane2002-04-271-1/+20
* Opclasses live in namespaces. I also took the opportunity to createTom Lane2002-04-171-36/+79
* Checking to decide whether relations are system relations now dependsTom Lane2002-04-121-9/+20
* Restructure representation of aggregate functions so that they have pg_procTom Lane2002-04-111-2/+4
* Functions live in namespaces. Qualified function names work, egTom Lane2002-04-091-5/+6
* Divide functions into three volatility classes (immutable, stable, andTom Lane2002-04-051-7/+8
* Reimplement temp tables using schemas. The temp table map is history;Tom Lane2002-03-311-4/+2
* pg_class has a relnamespace column. You can create and access tablesTom Lane2002-03-261-32/+42
* Code review for DOMAIN patch.Tom Lane2002-03-201-6/+4
* Change made to elog:Bruce Momjian2002-03-061-4/+4
* Require ownership permission for CREATE INDEX, per bug report.Tom Lane2002-01-031-7/+18
* Some minor tweaks of REINDEX processing: grab exclusive lock a littleREL7_2_BETA3Tom Lane2001-11-201-3/+5
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-19/+21
* Allow concurrent index creation for the same table.Hiroshi Inoue2001-10-241-2/+2
* Consider interpreting a function call as a trivial (binary-compatible)Tom Lane2001-10-041-4/+14
* Restructure pg_opclass, pg_amop, and pg_amproc per previous discussions inTom Lane2001-08-211-109/+81
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-101-2/+2
* Use format_type sibling in backend error messages, so the user seesPeter Eisentraut2001-08-091-5/+7
* Modify partial-index-predicate applicability tester to test whetherTom Lane2001-08-061-2/+4
* Disallow non-cachable functions in functional indexes and in indexTom Lane2001-07-171-2/+24
* Partial indexes work again, courtesy of Martijn van Oosterhout.Tom Lane2001-07-161-150/+19
* Restructure index AM interface for index building and index tuple deletion,Tom Lane2001-07-151-18/+26
* Allow a non-superuser database owner to vacuum all tables in hisTom Lane2001-06-131-24/+6
* Updates to make GIST work with multi-key indexes (from Oleg BartunovTom Lane2001-05-311-4/+6
* Remove OLD_FILE_NAMING code. No longer used.Bruce Momjian2001-05-301-5/+1
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-221-19/+16
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-42/+44
* Reindex of shared system indexes must be overwrite mode.Hiroshi Inoue2001-02-231-2/+5
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Remove a few remaining vestiges of elog(WARN).Tom Lane2000-12-151-2/+2
* REINDEX under WAL.Hiroshi Inoue2000-12-081-2/+6
* Change SearchSysCache coding conventions so that a reference count isTom Lane2000-11-161-62/+57
* Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane2000-11-081-2/+20
* Some small polishing of Mark Hollomon's cleanup of DROP command: mightTom Lane2000-10-221-8/+8
* Code cleanup of user name and user id handling in the backend. The currentPeter Eisentraut2000-09-061-16/+4
* Make functional indexes accept binary-compatible functions, for exampleTom Lane2000-08-201-23/+34
* More functions updated to new fmgr style --- money, name, tid datatypes.Tom Lane2000-08-031-2/+3
* Cleanup of code for creating index entries. Functional indexes withTom Lane2000-07-141-198/+114
* Update textin() and textout() to new fmgr style. This is just phaseTom Lane2000-07-051-2/+3
* Make toast-table creation and deletion work somewhat reliably.Tom Lane2000-07-041-5/+5
* First phase of memory management rewrite (see backend/utils/mmgr/READMETom Lane2000-06-281-9/+26
* Get rid of IndexIsUniqueNoCache() kluge by the simple expedient ofTom Lane2000-06-171-7/+7
* Fix performance problems with pg_index lookups (see, for example,Tom Lane2000-06-171-1/+8
* Clean up #include's.Bruce Momjian2000-06-151-1/+2
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-301-3/+1
* First round of changes for new fmgr interface. fmgr itself and theTom Lane2000-05-281-2/+3
* change reindex ERROR/NOTICE messageHiroshi Inoue2000-04-251-5/+7
* Check that user-specified opclass in CREATE INDEX corresponds to operatorsTom Lane2000-04-251-2/+41
* Produce an appropriate error message when opclass is not supported byTom Lane2000-04-231-37/+86