summaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/relcache.c
Commit message (Expand)AuthorAgeFilesLines
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-301-2/+8
* Fix corner-case bug introduced with HOT: if REINDEX TABLE pg_class (or aTom Lane2008-08-101-2/+8
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-1/+3
* Fix LOAD_CRIT_INDEX() macro to take out AccessShareLock on the system indexTom Lane2008-04-161-6/+18
* Fix an oversight I made in a cleanup patch over a year ago:Tom Lane2008-04-011-3/+3
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-261-1/+2
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-18/+7
* If RelationBuildDesc() fails to open a critical system index, PANIC withTom Lane2008-02-271-2/+5
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Improve test coverage of CLOBBER_CACHE_ALWAYS by having it also forceTom Lane2007-11-281-24/+44
* pgindent run for 8.3.Bruce Momjian2007-11-151-18/+19
* HOT updates. When we update a tuple without changing any of its indexedTom Lane2007-09-201-1/+95
* Arrange to put TOAST tables belonging to temporary tables into special schemasTom Lane2007-07-251-3/+3
* Fix up pgstats counting of live and dead tuples to recognize that committedTom Lane2007-05-271-1/+3
* Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalidTom Lane2007-05-021-16/+43
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-291-32/+43
* Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck2007-03-191-1/+2
* Fix for COPY-after-truncate feature.Bruce Momjian2007-03-031-7/+23
* Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane2007-02-271-3/+3
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-251-2/+21
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-091-3/+36
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Found the problem with my operator-family changes: by fetching fromTom Lane2006-12-311-4/+5
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-231-56/+125
* Fix recently-identified PITR recovery hazard: the base backup could containTom Lane2006-11-051-1/+23
* pgindent run for 8.2.Bruce Momjian2006-10-041-36/+36
* Get rid of the separate RULE privilege for tables: now only a table's ownerTom Lane2006-09-051-1/+18
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-311-32/+30
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-6/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+2
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-92/+142
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-55/+116
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-161-6/+25
* Further minor simplification of relcache startup: don't need a staticTom Lane2006-05-061-17/+10
* Simplify relcache startup sequence. With the new design of InitPostgresTom Lane2006-05-041-37/+41
* Arrange to cache btree metapage data in the relcache entry for the index,Tom Lane2006-04-251-1/+7
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Avoid crashing if relcache flush occurs while trying to load data into anTom Lane2006-01-191-13/+34
* Fix a tiny memory leak (one List header) in RelationCacheInvalidate().Tom Lane2006-01-191-3/+7
* Avoid leaking memory while reading toasted entries from pg_rewrite,Tom Lane2006-01-081-21/+39
* Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut2006-01-051-2/+2
* Simplify lock manager data structures by making a clear separation betweenTom Lane2005-12-091-2/+2
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-26/+26
* Remove the t_datamcxt field of HeapTupleData. This was introduced forTom Lane2005-11-201-2/+1
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-210/+198
* Update two comments to refer to use the new list API names.Neil Conway2005-09-161-2/+2
* Arrange for indexes and toast tables to inherit their ownership fromTom Lane2005-08-261-1/+4
* Solve the problem of OID collisions by probing for duplicate OIDsTom Lane2005-08-121-4/+53
* Modify AtEOXact_CatCache and AtEOXact_RelationCache to assume that theTom Lane2005-08-081-53/+52
* Modify hash_search() API to prevent future occurrences of the errorTom Lane2005-05-291-9/+1