summaryrefslogtreecommitdiff
path: root/src/backend/rewrite
Commit message (Expand)AuthorAgeFilesLines
* Update copyright for 2021Bruce Momjian2021-01-026-6/+6
* Improve wording of two error messages related to generated columns.Tom Lane2020-11-231-7/+10
* Allow a multi-row INSERT to specify DEFAULTs for a generated column.Tom Lane2020-11-221-27/+215
* Move catalog index declarationsPeter Eisentraut2020-11-071-1/+0
* Calculate extraUpdatedCols in query rewriter, not parser.Tom Lane2020-10-281-0/+41
* Optimize a few list_delete_ptr callsDavid Rowley2020-10-221-5/+1
* Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE.Tom Lane2020-08-301-1/+1
* Add missing invocations to object access hooksMichael Paquier2020-05-231-0/+2
* Fix INSERT OVERRIDING USER VALUE behaviorPeter Eisentraut2020-03-311-1/+3
* Make rewriter prevent auto-updates on views with conditional INSTEAD rules.Dean Rasheed2020-01-141-5/+55
* Reconsider the representation of join alias Vars.Tom Lane2020-01-091-6/+12
* Make parser rely more heavily on the ParseNamespaceItem data structure.Tom Lane2020-01-021-5/+7
* Update copyrights for 2020Bruce Momjian2020-01-016-6/+6
* Revert "Rename files and headers related to index AM"Michael Paquier2019-12-271-1/+1
* Rename files and headers related to index AMMichael Paquier2019-12-251-1/+1
* Disallow dropping rules on system tables by defaultPeter Eisentraut2019-12-201-0/+8
* Refactor attribute mappings used in logical tuple conversionMichael Paquier2019-12-181-7/+5
* Remove useless "return;" linesAlvaro Herrera2019-11-281-2/+0
* Defend against self-referential views in relation_is_updatable().Tom Lane2019-11-211-0/+21
* Make the order of the header file includes consistent in backend modules.Amit Kapila2019-11-121-1/+1
* Split all OBJS style lines in makefiles into one-line-per-entry style.Andres Freund2019-11-051-3/+7
* Rationalize use of list_concat + list_copy combinations.Tom Lane2019-08-121-4/+4
* Make identity sequence management more robustPeter Eisentraut2019-07-221-1/+1
* Avoid using lcons and list_delete_first where it's easy to do so.Tom Lane2019-07-171-6/+6
* Redesign the API for list sorting (list_qsort becomes list_sort).Tom Lane2019-07-161-33/+10
* Fix inconsistencies and typos in the treeMichael Paquier2019-07-161-1/+1
* Fix many typos and inconsistenciesMichael Paquier2019-07-011-5/+5
* Fix typos in various placesMichael Paquier2019-06-031-1/+1
* Phase 2 pgindent run for v12.Tom Lane2019-05-224-34/+34
* Perform RLS subquery checks as the right user when going via a view.Dean Rasheed2019-04-021-0/+8
* Generated columnsPeter Eisentraut2019-03-301-7/+29
* tableam: Add and use scan APIs.Andres Freund2019-03-111-4/+8
* tableam: introduce table AM infrastructure.Andres Freund2019-03-061-0/+1
* Further fixing for multi-row VALUES lists for updatable views.Dean Rasheed2019-03-031-39/+59
* Fix DEFAULT-handling in multi-row VALUES lists for updatable views.Dean Rasheed2019-02-201-11/+128
* Renaming for new subscripting mechanismAlvaro Herrera2019-02-011-12/+14
* Rename nodes/relation.h to nodes/pathnodes.h.Tom Lane2019-01-291-1/+1
* Refactor planner's header files.Tom Lane2019-01-291-1/+1
* Split QTW_EXAMINE_RTES flag into QTW_EXAMINE_RTES_BEFORE/_AFTER.Tom Lane2019-01-251-3/+3
* Remove superfluous tqual.h includes.Andres Freund2019-01-213-3/+0
* Replace uses of heap_open et al with the corresponding table_* function.Andres Freund2019-01-215-28/+28
* Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund2019-01-214-4/+5
* Don't include heapam.h from others headers.Andres Freund2019-01-141-0/+1
* Update copyright for 2019Bruce Momjian2019-01-026-6/+6
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-203-13/+20
* Change rewriter/planner/executor/plancache to depend on RTE rellockmode.Tom Lane2018-10-021-20/+10
* Create an RTE field to record the query's lock mode for each relation.Tom Lane2018-09-301-10/+29
* Fix some minor issues exposed by outfuncs/readfuncs testing.Tom Lane2018-09-181-4/+7
* Fix set of NLS translation issuesMichael Paquier2018-08-211-0/+9
* Fix INSERT ON CONFLICT UPDATE through a view that isn't just SELECT *.Tom Lane2018-08-041-2/+101