aboutsummaryrefslogtreecommitdiff
path: root/src/include
Commit message (Expand)AuthorAge
* Restrict lo_import()/lo_export() via SQL permissions not hard-wired checks.Tom Lane2017-11-09
* Change TRUE/FALSE to true/falsePeter Eisentraut2017-11-08
* Fix unportable spelling of int64 constant.Tom Lane2017-11-07
* Remove secondary checkpointSimon Riggs2017-11-07
* Exclude pg_internal.init from BASE_BACKUPSimon Riggs2017-11-07
* Always require SELECT permission for ON CONFLICT DO UPDATE.Dean Rasheed2017-11-06
* Teach planner to account for HAVING quals in aggregation plan nodes.Tom Lane2017-11-02
* Revert bogus fixes of HOT-freezing bugAlvaro Herrera2017-11-02
* Allow bitmap scans to operate as index-only scans when possible.Tom Lane2017-11-01
* Fix ALTER TABLE code to update domain constraints when needed.Tom Lane2017-11-01
* Fix problems with the "role" GUC and parallel query.Robert Haas2017-10-29
* Add hash_combine64.Robert Haas2017-10-29
* Revert "Move new structure member to the end."Robert Haas2017-10-27
* Move new structure member to the end.Robert Haas2017-10-27
* Fix mistaken failure to allow parallelism in corner case.Robert Haas2017-10-27
* Support domains over composite types.Tom Lane2017-10-26
* Add a utility function to extract variadic function argumentsAndrew Dunstan2017-10-25
* Allow the built-in ordered-set aggregates to share transition state.Tom Lane2017-10-16
* Repair breakage of aggregate FILTER option.Tom Lane2017-10-16
* gcc's support for __attribute__((noinline)) hasn't been around forever.Tom Lane2017-10-14
* Explicitly track whether aggregate final functions modify transition state.Tom Lane2017-10-14
* Improve sys/catcache performance.Andres Freund2017-10-13
* Add pg_noinline macro to c.h.Andres Freund2017-10-13
* Rely on sizeof(typename) rather than sizeof(variable) in pqformat.h.Tom Lane2017-10-13
* Use C99 restrict via pg_restrict, rather than restrict directly.Andres Freund2017-10-12
* Use ResultRelInfo ** rather than ResultRelInfo * for tuple routing.Robert Haas2017-10-12
* Fix AggGetAggref() so it won't lie to aggregate final functions.Tom Lane2017-10-12
* Temporary attempt at a workaround for further MSVC restrict build failures.Andres Freund2017-10-11
* Work around overly strict restrict checks by MSVC.Andres Freund2017-10-11
* Improve performance of SendRowDescriptionMessage.Andres Freund2017-10-11
* pg_stat_statements: Widen query IDs from 32 bits to 64 bits.Robert Haas2017-10-11
* Add more efficient functions to pqformat API.Andres Freund2017-10-11
* Allow to avoid NUL-byte management for stringinfos and use in format.c.Andres Freund2017-10-11
* Add configure infrastructure to detect support for C99's restrict.Andres Freund2017-10-11
* Fix low-probability loss of NOTIFY messages due to XID wraparound.Tom Lane2017-10-11
* Rewrite strnlen replacement implementation from 8a241792f96.Andres Freund2017-10-10
* Add pg_strnlen() a portable implementation of strlen.Andres Freund2017-10-09
* Reduce memory usage of targetlist SRFs.Andres Freund2017-10-08
* Reduce "X = X" to "X IS NOT NULL", if it's easy to do so.Tom Lane2017-10-08
* Fix crash when logical decoding is invoked from a PL function.Tom Lane2017-10-06
* Copy information from the relcache instead of pointing to it.Robert Haas2017-10-06
* Fix traversal of half-frozen update chainsAlvaro Herrera2017-10-06
* Basic partition-wise join functionality.Robert Haas2017-10-06
* Msvc doesn't know UINT16_MAX, replace with PG_UINT16_MAX.Andres Freund2017-10-04
* Replace binary search in fmgr_isbuiltin with a lookup array.Andres Freund2017-10-04
* Allow multiple tables to be specified in one VACUUM or ANALYZE command.Tom Lane2017-10-03
* Fix race condition with unprotected use of a latch pointer variable.Tom Lane2017-10-03
* Remove redundant stdint.h include.Andres Freund2017-10-01
* Support arrays over domains.Tom Lane2017-09-30
* Fix copy & pasto in 510b8cbff15f.Andres Freund2017-09-29