summaryrefslogtreecommitdiff
path: root/src/backend/commands
Commit message (Expand)AuthorAgeFilesLines
* Turn transaction_isolation into GUC enumPeter Eisentraut2018-10-091-55/+2
* Relax transactional restrictions on ALTER TYPE ... ADD VALUE (redux).Thomas Munro2018-10-091-25/+4
* Silence compiler warning in Assert()Alvaro Herrera2018-10-081-1/+1
* Track procedure calls in pg_stat_user_functionsPeter Eisentraut2018-10-081-0/+4
* Improve two error messages related to foreign keys on partitioned tablesMichael Paquier2018-10-081-2/+4
* Fix catalog insertion order for ATTACH PARTITIONAlvaro Herrera2018-10-061-3/+3
* Fix event triggers for partitioned tablesAlvaro Herrera2018-10-064-8/+14
* Assign constraint name when cloning FK definition for partitionsMichael Paquier2018-10-061-7/+7
* In the executor, use an array of pointers to access the rangetable.Tom Lane2018-10-042-4/+3
* Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane2018-10-041-1/+3
* Add option SKIP_LOCKED to VACUUM and ANALYZEMichael Paquier2018-10-041-1/+25
* Fix issues around EXPLAIN with JIT.Andres Freund2018-10-031-2/+27
* Use slots more widely in tuple mapping code and make naming more consistent.Andres Freund2018-10-023-10/+25
* Refactor relation opening for VACUUM and ANALYZEMichael Paquier2018-10-022-109/+115
* Fix ALTER COLUMN TYPE to not open a relation without any lock.Tom Lane2018-10-011-4/+14
* Create an RTE field to record the query's lock mode for each relation.Tom Lane2018-09-306-13/+29
* Recurse to sequences on ownership change for all relkindsPeter Eisentraut2018-09-261-10/+6
* Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund2018-09-256-14/+14
* Collect JIT instrumentation from workers.Andres Freund2018-09-251-28/+59
* Make EXPLAIN output for JIT compilation more dense.Andres Freund2018-09-241-25/+64
* Fast default trigger and expand_tuple fixesAndrew Dunstan2018-09-241-1/+4
* Fix ALTER/TYPE on columns referenced by FKs in partitioned tablesAlvaro Herrera2018-09-141-47/+24
* Improve autovacuum logging for aggressive and anti-wraparound runsMichael Paquier2018-09-141-3/+13
* Simplify static function in extension.cMichael Paquier2018-09-131-4/+2
* Remove duplicated words split across lines in commentsMichael Paquier2018-09-082-2/+2
* Remove no-longer-used variable.Tom Lane2018-09-051-2/+1
* Simplify partitioned table creation vs. relcacheAlvaro Herrera2018-09-051-7/+3
* Fully enforce uniqueness of constraint names.Tom Lane2018-09-043-116/+134
* Avoid using potentially-under-aligned page buffers.Tom Lane2018-09-011-14/+6
* Error position support for partition specificationsPeter Eisentraut2018-08-301-5/+11
* Error position support for defaults and check constraintsPeter Eisentraut2018-08-301-4/+5
* Improve VACUUM and ANALYZE by avoiding early lock queueMichael Paquier2018-08-272-60/+124
* Change PROCEDURE to FUNCTION in CREATE OPERATOR syntaxPeter Eisentraut2018-08-221-8/+12
* doc: Update uses of the word "procedure"Peter Eisentraut2018-08-221-15/+15
* Fix set of NLS translation issuesMichael Paquier2018-08-212-2/+2
* InsertPgAttributeTuple() to set attcacheoffPeter Eisentraut2018-08-171-1/+0
* Remove obsolete commentPeter Eisentraut2018-08-131-6/+0
* Improve TRUNCATE by avoiding early lock queueMichael Paquier2018-08-101-18/+66
* Restrict access to reindex of shared catalogs for non-privileged usersMichael Paquier2018-08-091-0/+12
* Don't record FDW user mappings as members of extensions.Tom Lane2018-08-071-2/+6
* Allow multi-inserts during COPY into a partitioned tablePeter Eisentraut2018-08-011-83/+264
* Fix two oversights from 9ebe0572 which refactored cluster_relMichael Paquier2018-07-291-3/+3
* Refactor cluster_rel() to handle more optionsMichael Paquier2018-07-242-5/+12
* Remove undocumented restriction against duplicate partition key columns.Tom Lane2018-07-191-15/+0
* Drop the rule against included index columns duplicating key columns.Tom Lane2018-07-181-6/+1
* Fix misc typos, mostly in comments.Heikki Linnakangas2018-07-182-2/+2
* Fix ALTER TABLE...SET STATS error message for included columnsAlvaro Herrera2018-07-161-8/+15
* Prohibit transaction commands in security definer proceduresPeter Eisentraut2018-07-131-0/+9
* Fix FK checks of TRUNCATE involving partitioned tablesAlvaro Herrera2018-07-121-1/+1
* Allow using the updated tuple while moving it to a different partition.Amit Kapila2018-07-121-1/+21