aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/cache
Commit message (Expand)AuthorAge
* Modify the relcache to record the temp status of both local and nonlocalTom Lane2009-03-31
* Add a "relistemp" boolean column to pg_class, which is true for temporaryTom Lane2009-03-31
* Revert updatable viewsPeter Eisentraut2009-01-27
* Allow extracting and parsing of reloptions from a bare pg_class tuple, andAlvaro Herrera2009-01-26
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-22
* Automatic view update rulesPeter Eisentraut2009-01-22
* Update copyright for 2009.Bruce Momjian2009-01-01
* Fix oversight in ALTER TABLE ENABLE/DISABLE RULE patch: the new enabledTom Lane2008-12-30
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-19
* Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's uselessTom Lane2008-12-13
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-13
* Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas2008-12-03
* Rely on relcache invalidation to update the cached size of the FSM.Heikki Linnakangas2008-11-26
* Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane2008-11-10
* Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane2008-11-09
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-02
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-04
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-30
* Add hooks to let plugins override the planner's lookups in pg_statistic.Tom Lane2008-09-28
* Fix caching of foreign-key-checking queries so that when a replan is needed,Tom Lane2008-09-15
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-09
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Fix corner-case bug introduced with HOT: if REINDEX TABLE pg_class (or aTom Lane2008-08-10
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane2008-07-30
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-18
* Rewrite the sinval messaging mechanism to reduce contention and avoidTom Lane2008-06-19
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-19
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-12
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-12
* The CONSTROID syscache should show conrelid as a relation OID column.Tom Lane2008-05-07
* Fix LOAD_CRIT_INDEX() macro to take out AccessShareLock on the system indexTom Lane2008-04-16
* Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane2008-04-13
* Create new routines systable_beginscan_ordered, systable_getnext_ordered,Tom Lane2008-04-12
* Fix an oversight I made in a cleanup patch over a year ago:Tom Lane2008-04-01
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-26
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-26
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-26
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-25
* Fix heap_page_prune's problem with failing to send cache invalidationTom Lane2008-03-13
* In PrepareToInvalidateCacheTuple, don't force initialization of catalogTom Lane2008-03-05
* If RelationBuildDesc() fails to open a critical system index, PANIC withTom Lane2008-02-27
* Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut2008-02-19
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane2007-11-30
* Improve test coverage of CLOBBER_CACHE_ALWAYS by having it also forceTom Lane2007-11-28
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Fix ALTER COLUMN TYPE to preserve the tablespace and reloptions of indexesTom Lane2007-10-13
* Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane2007-10-11