summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2019-03-10Convert [autovacuum_]vacuum_cost_delay into floating-point GUCs.Tom Lane
2019-03-10Support for INCLUDE attributes in GiST indexesAlexander Korotkov
2019-03-09Add new clientcert hba option verify-fullMagnus Hagander
2019-03-09Track block level checksum failures in pg_stat_databaseMagnus Hagander
2019-03-09Avoid some table rewrites for ALTER TABLE .. SET DATA TYPE timestamp.Noah Misch
2019-03-08Reformat catalog .dat files.Tom Lane
2019-03-08Minor improvements for reformat_dat_file.pl.Tom Lane
2019-03-07Fix handling of targetlist SRFs when scan/join relation is known empty.Tom Lane
2019-03-07Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas
2019-03-07Remove useless header inclusion.Thomas Munro
2019-03-07Drop the vestigial "smgr" type.Thomas Munro
2019-03-06Don't reuse slots between root and partition in ON CONFLICT ... UPDATE.Andres Freund
2019-03-06Fix copy/out/readfuncs for accessMethod addition in 8586bf7ed8.Andres Freund
2019-03-06tableam: introduce table AM infrastructure.Andres Freund
2019-03-04pg_partition_ancestorsAlvaro Herrera
2019-03-04Remove volatile from latch APIPeter Eisentraut
2019-03-01Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund
2019-02-28Standardize some more loops that chase down parallel lists.Tom Lane
2019-02-27Use slots in trigger infrastructure, except for the actual invocation.Andres Freund
2019-02-27Store table oid and tuple's tid in tuple slots directly.Andres Freund
2019-02-27Allow to use HeapTupleData embedded in [Buffer]HeapTupleTableSlot.Andres Freund
2019-02-27Add ExecStorePinnedBufferHeapTuple.Andres Freund
2019-02-26Remove unneeded argument from _bt_getstackbuf().Peter Geoghegan
2019-02-25Remove unnecessary use of PROCEDURALPeter Eisentraut
2019-02-25Make release of 2PC identifier and locks consistent in COMMIT PREPAREDMichael Paquier
2019-02-21Move estimate_hashagg_tablesize to selfuncs.c, and widen result to double.Tom Lane
2019-02-21Move code for managing PartitionDescs into a new file, partdesc.cRobert Haas
2019-02-20Use an unsigned char for bool if we don't use the native bool.Andrew Gierth
2019-02-18Fix typo in transam.h for OIDs assigned by genbki.plMichael Paquier
2019-02-17Mark pg_config() stable rather than immutableJoe Conway
2019-02-16Allow user control of CTE materialization, and change the default behavior.Tom Lane
2019-02-16Fix previous MinGW fix.Andrew Gierth
2019-02-16Make use of compiler builtins and/or assembly for CLZ, CTZ, POPCNT.Tom Lane
2019-02-16Cygwin and Mingw floating-point fixes.Andrew Gierth
2019-02-15Revert attempts to use POPCNT etc instructionsAlvaro Herrera
2019-02-15Refactor index cost estimation functions in view of IndexClause changes.Tom Lane
2019-02-15Fix compiler builtin usage in new pg_bitutils.cAlvaro Herrera
2019-02-15Simplify the planner's new representation of indexable clauses a little.Tom Lane
2019-02-14Get rid of another unconstify through API changesPeter Eisentraut
2019-02-14Move pattern selectivity code from selfuncs.c to like_support.c.Tom Lane
2019-02-13Fix portability issues in pg_bitutilsAlvaro Herrera
2019-02-13Add basic support for using the POPCNT and SSE4.2s LZCNT opcodesAlvaro Herrera
2019-02-13Change floating-point output format for improved performance.Andrew Gierth
2019-02-13Use strtof() and not strtod() for float4 input.Andrew Gierth
2019-02-12Fix header inclusion issue.Tom Lane
2019-02-12Allow extensions to generate lossy index conditions.Tom Lane
2019-02-12Move max_wal_senders out of max_connections for connection slot handlingMichael Paquier
2019-02-11Redesign the partition dependency mechanism.Tom Lane
2019-02-11Fix misleading PG_RE_THROW commentaryAlvaro Herrera
2019-02-09Build out the planner support function infrastructure.Tom Lane