summaryrefslogtreecommitdiff
path: root/src/backend/commands/indexcmds.c
Commit message (Expand)AuthorAgeFilesLines
* Make relation-enumerating operations be security-restricted operations.Noah Misch2022-05-091-13/+85
* Fix comment in CheckIndexCompatible().Fujii Masao2022-02-181-1/+1
* Add UNIQUE null treatment optionPeter Eisentraut2022-02-031-1/+2
* Fix various typos, grammar and code style in comments and docsMichael Paquier2022-01-251-1/+1
* Update copyright for 2022Bruce Momjian2022-01-071-1/+1
* Some RELKIND macro refactoringPeter Eisentraut2021-12-031-6/+3
* Improve error messages about mismatching relkindPeter Eisentraut2021-07-081-13/+3
* Initial pgindent and pgperltidy run for v14.Tom Lane2021-05-121-3/+3
* Fix relcache inconsistency hazard in partition detachAlvaro Herrera2021-04-221-2/+2
* ALTER TABLE ... DETACH PARTITION ... CONCURRENTLYAlvaro Herrera2021-03-251-3/+3
* Remove StoreSingleInheritance reimplementationAlvaro Herrera2021-03-251-17/+1
* Use pgstat_progress_update_multi_param() where possibleMichael Paquier2021-02-221-5/+14
* Use errmsg_internal for debug messagesPeter Eisentraut2021-02-171-1/+1
* Add TABLESPACE option to REINDEXMichael Paquier2021-02-041-0/+111
* Refactor option handling of CLUSTER, REINDEX and VACUUMMichael Paquier2021-01-181-54/+108
* Avoid spurious wait in concurrent reindexAlvaro Herrera2021-01-151-1/+47
* Invent struct ReindexIndexInfoAlvaro Herrera2021-01-121-61/+65
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Refactor CLUSTER and REINDEX grammar to use DefElem for option listsMichael Paquier2020-12-031-0/+36
* Avoid memcpy() with a NULL source pointer and count == 0Alvaro Herrera2020-12-011-2/+4
* Avoid spurious waits in concurrent indexingAlvaro Herrera2020-11-251-3/+60
* indexcmds.c: reorder function prototypesAlvaro Herrera2020-11-171-4/+3
* Fix fuzzy thinking about amcanmulticol versus amcaninclude.Tom Lane2020-11-151-2/+2
* Message style improvementsAlvaro Herrera2020-11-071-2/+3
* Reword partitioning error messageAlvaro Herrera2020-09-301-2/+1
* Fix progress reporting of REINDEX CONCURRENTLYMichael Paquier2020-09-291-16/+54
* Add support for partitioned tables and indexes in REINDEXMichael Paquier2020-09-081-52/+193
* Remove variable "concurrent" from ReindexStmtMichael Paquier2020-09-041-13/+20
* Improve handling of dropped relations for REINDEX DATABASE/SCHEMA/SYSTEMMichael Paquier2020-09-021-5/+58
* snapshot scalability: Move PGXACT->xmin back to PGPROC.Andres Freund2020-08-131-1/+1
* Replace remaining StrNCpy() by strlcpy()Peter Eisentraut2020-08-101-1/+1
* Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch2020-04-041-0/+2
* Check equality semantics for unique indexes on partitioned tables.Tom Lane2020-04-011-25/+77
* Implement operator class parametersAlexander Korotkov2020-03-301-1/+64
* Revert "Skip WAL for new relfilenodes, under wal_level=minimal."Noah Misch2020-03-221-2/+0
* Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch2020-03-211-0/+2
* Fix typo in indexcmds.cMichael Paquier2020-03-181-1/+1
* Prevent reindex of invalid indexes on TOAST tablesMichael Paquier2020-03-101-0/+10
* Remove ancient hacks to ignore certain opclass names in CREATE INDEX.Tom Lane2020-03-051-29/+1
* Fix concurrent indexing operations with temporary tablesMichael Paquier2020-01-221-12/+53
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Revert "Rename files and headers related to index AM"Michael Paquier2019-12-271-1/+1
* Load relcache entries' partitioning data on-demand, not immediately.Tom Lane2019-12-251-1/+1
* Rename files and headers related to index AMMichael Paquier2019-12-251-1/+1
* Refactor attribute mappings used in logical tuple conversionMichael Paquier2019-12-181-9/+7
* Handle interrupts within a transaction context in REINDEX CONCURRENTLYMichael Paquier2019-10-251-4/+25
* Acquire properly session-level lock on new index in REINDEX CONCURRENTLYMichael Paquier2019-10-231-2/+5
* Fix typoAlvaro Herrera2019-10-181-1/+1
* Fix crash when reporting CREATE INDEX progressAlvaro Herrera2019-10-161-2/+4
* Fix progress report of REINDEX INDEXAlvaro Herrera2019-09-201-1/+2