summaryrefslogtreecommitdiff
path: root/src/backend/utils/cache/relcache.c
Commit message (Expand)AuthorAgeFilesLines
* Load relcache entries' partitioning data on-demand, not immediately.Tom Lane2019-12-251-59/+42
* Fix misbehavior with expression indexes on ON COMMIT DELETE ROWS tables.Tom Lane2019-12-011-0/+51
* Make the order of the header file includes consistent in backend modules.Amit Kapila2019-11-121-2/+1
* Avoid catalog lookups in RelationAllowsEarlyPruning().Thomas Munro2019-08-281-42/+0
* Allow table AM's to use rd_amcache, too.Heikki Linnakangas2019-07-301-2/+9
* Clean up some ad-hoc code for sorting and de-duplicating Lists.Tom Lane2019-07-161-37/+9
* Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane2019-07-151-1/+1
* Phase 2 pgindent run for v12.Tom Lane2019-05-221-8/+8
* Initial pgindent run for v12.Tom Lane2019-05-221-3/+3
* Clean up the behavior and API of catalog.c's is-catalog-relation tests.Tom Lane2019-05-081-2/+2
* Remove RelationSetIndexList().Tom Lane2019-05-031-80/+10
* Fix reindexing of pg_class indexes some more.Tom Lane2019-05-021-32/+57
* Fix several recently introduced issues around handling new relation forks.Andres Freund2019-04-291-26/+29
* Fix handling of temp and unlogged tables in FOR ALL TABLES publicationsPeter Eisentraut2019-04-181-0/+7
* Prevent memory leaks associated with relcache rd_partcheck structures.Tom Lane2019-04-131-7/+13
* Generated columnsPeter Eisentraut2019-03-301-0/+4
* tableam: relation creation, VACUUM FULL/CLUSTER, SET TABLESPACE.Andres Freund2019-03-281-31/+46
* Further reduce memory footprint of CLOBBER_CACHE_ALWAYS testing.Tom Lane2019-03-151-0/+48
* Fix typos in commit 8586bf7ed8.Amit Kapila2019-03-111-1/+1
* Move hash_any prototype from access/hash.h to utils/hashutils.hAlvaro Herrera2019-03-111-1/+0
* Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas2019-03-071-0/+20
* tableam: introduce table AM infrastructure.Andres Freund2019-03-061-3/+120
* Move code for managing PartitionDescs into a new file, partdesc.cRobert Haas2019-02-211-56/+1
* Fix a crash in logical replicationPeter Eisentraut2019-01-301-14/+36
* Refactor planner's header files.Tom Lane2019-01-291-3/+1
* Make some small planner API cleanups.Tom Lane2019-01-291-0/+1
* Rename RelationData.rd_amroutine to rd_indam.Andres Freund2019-01-211-7/+7
* Remove useless bms_copy step in RelationGetIndexAttrBitmap.Tom Lane2019-01-211-1/+1
* Remove superfluous tqual.h includes.Andres Freund2019-01-211-1/+0
* Replace uses of heap_open et al with the corresponding table_* function.Andres Freund2019-01-211-24/+24
* Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund2019-01-211-1/+1
* Refactor duplicate code into DeconstructFkConstraintRowAlvaro Herrera2019-01-181-56/+5
* Finish reverting "recheck_on_update" patch.Tom Lane2019-01-151-111/+7
* Don't include heapam.h from others headers.Andres Freund2019-01-141-0/+1
* Don't create relfilenode for relations without storageAlvaro Herrera2019-01-041-0/+4
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Remove obsolete IndexIs* macrosPeter Eisentraut2018-12-271-3/+3
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-201-96/+29
* Disable recheck_on_update optimization to avoid crashes.Tom Lane2018-11-061-0/+3
* Correct attach/detach logic for FKs in partitionsAlvaro Herrera2018-10-121-2/+4
* Fully enforce uniqueness of constraint names.Tom Lane2018-09-041-3/+7
* Cosmetic improvements for faster column addition.Amit Kapila2018-06-271-5/+5
* Fix up run-time partition pruning's use of relcache's partition data.Tom Lane2018-06-131-3/+3
* Fix bugs in vacuum of shared rels, by keeping their relcache entries current.Andres Freund2018-06-121-62/+125
* Post-feature-freeze pgindent run.Tom Lane2018-04-261-12/+13
* Reorganize partitioning codeAlvaro Herrera2018-04-141-206/+2
* Use the right memory context for partkey's FmgrInfoAlvaro Herrera2018-04-121-1/+1
* Cleanup covering infrastructureTeodor Sigaev2018-04-121-4/+4
* Rename IndexInfo.ii_KeyAttrNumbers arrayTeodor Sigaev2018-04-121-1/+1
* Indexes with INCLUDE columns and their support in B-treeTeodor Sigaev2018-04-071-37/+50