summaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/relcache.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Arrange to cache fmgr lookup information for an index's access methodTom Lane2005-05-271-4/+10
* Code cleanup: in C89, there is no point casting the first argument toNeil Conway2005-05-111-3/+3
* For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane2005-05-061-1/+2
* Marginal hack to use a specialized hash function for dynahash hashtablesTom Lane2005-04-141-3/+3
* Completion of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-247/+68
* First phase of project to use fixed OIDs for all system catalogs andTom Lane2005-04-141-11/+24
* Convert oidvector and int2vector into variable-length arrays. ThisTom Lane2005-03-291-30/+91
* Rethink the order of expression preprocessing: eval_const_expressionsTom Lane2005-03-281-15/+14
* Adjust creation/destruction of TupleDesc data structure to reduce theTom Lane2005-03-071-13/+7
* Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane2005-01-101-34/+5
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Upgrade formrdesc() so that it can correctly initialize the tupledescTom Lane2004-12-121-28/+34
* Avoid scanning the relcache during AtEOSubXact_RelationCache when thereTom Lane2004-11-201-1/+30
* Restructure subtransaction handling to reduce resource consumption,Tom Lane2004-09-161-16/+16
* Pgindent run for 8.0.Bruce Momjian2004-08-291-53/+55
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Fix relcache to account properly for subtransaction status of 'new'Tom Lane2004-08-281-27/+86
* Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane2004-07-171-151/+56
* Nested transactions. There is still much left to do, especially on theTom Lane2004-07-011-4/+139