summaryrefslogtreecommitdiff
path: root/src/backend/utils
Commit message (Expand)AuthorAgeFilesLines
* Allow to_date/to_timestamp to recognize non-English month/day names.Tom Lane2020-03-033-39/+173
* Report progress of streaming base backup.Fujii Masao2020-03-031-0/+2
* Represent command completion tags as structsAlvaro Herrera2020-03-023-20/+24
* Fix corner-case loss of precision in numeric ln().Dean Rasheed2020-03-011-1/+9
* Move src/backend/utils/hash/hashfn.c to src/commonRobert Haas2020-02-2718-709/+16
* Add equalimage B-Tree support functions.Peter Geoghegan2020-02-262-0/+46
* Account explicitly for long-lived FDs that are allocated outside fd.c.Tom Lane2020-02-242-2/+2
* Adapt hashfn.c and hashutils.h for frontend use.Robert Haas2020-02-241-28/+24
* Put all the prototypes for hashfn.c into the same header file.Robert Haas2020-02-241-0/+1
* Move bitmap_hash and bitmap_match to bitmapset.c.Robert Haas2020-02-241-24/+0
* Assume that we have <wchar.h>.Tom Lane2020-02-211-3/+1
* Assume that we have utime() and <utime.h>.Tom Lane2020-02-211-25/+2
* Assume that we have cbrt().Tom Lane2020-02-211-38/+0
* logtape.c: allocate read buffer even for an empty tape.Jeff Davis2020-02-191-11/+5
* Remove duplicated words in commentsMichael Paquier2020-02-181-1/+1
* Logical Tape Set: lazily allocate read buffer.Jeff Davis2020-02-131-7/+36
* Avoid a performance regression in float overflow/underflow detection.Tom Lane2020-02-132-44/+124
* Use pg_pwrite() in more places.Thomas Munro2020-02-111-2/+1
* Fix bug in Tid scan.Fujii Masao2020-02-071-2/+2
* Revert "Add GUC checks for ssl_min_protocol_version and ssl_max_protocol_vers...Michael Paquier2020-02-071-49/+2
* Ensure relcache consistency around generated columnsPeter Eisentraut2020-02-061-2/+5
* Refactor hash_agg_entry_size().Jeff Davis2020-02-061-10/+2
* Logical Tape Set: use min heap for freelist.Jeff Davis2020-02-061-56/+104
* Add leader_pid to pg_stat_activityMichael Paquier2020-02-061-18/+26
* Make vacuum buffer counters 64 bits wideAlvaro Herrera2020-02-051-3/+3
* Add declaration-level assertions for compile-time checksMichael Paquier2020-02-032-0/+45
* Optimizations for integer to decimal output.Andrew Gierth2020-02-013-224/+280
* Fix not-quite-right string comparison in parse_jsonb_index_flags().Tom Lane2020-01-311-1/+1
* Fix CheckAttributeType's handling of collations for ranges.Tom Lane2020-01-311-0/+26
* Adjust DSM and DSA slot usage constants.Thomas Munro2020-01-311-1/+1
* Clean up newlines following left parenthesesAlvaro Herrera2020-01-3010-47/+31
* Remove excess parens in ereport() callsAlvaro Herrera2020-01-303-8/+8
* Move jsonapi.c and jsonapi.h to src/common.Robert Haas2020-01-296-1103/+7
* Apply project best practices to switches over enum values.Tom Lane2020-01-271-3/+17
* Move some code from jsonapi.c to jsonfuncs.c.Robert Haas2020-01-274-127/+130
* Adjust pg_parse_json() so that it does not directly ereport().Robert Haas2020-01-274-280/+299
* Fix EXPLAIN (SETTINGS) to follow policy about when to print empty fields.Tom Lane2020-01-261-39/+15
* Add functions gcd() and lcm() for integer and numeric types.Dean Rasheed2020-01-253-0/+423
* Remove jsonapi.c's lex_accept().Robert Haas2020-01-241-73/+51
* Split JSON lexer/parser from 'json' data type support.Robert Haas2020-01-243-1205/+1218
* Adjust src/include/utils/jsonapi.h so it's not backend-only.Robert Haas2020-01-242-0/+2
* Fix an oversight in commit 4c70098ff.Tom Lane2020-01-231-8/+1
* Clean up formatting.c's logic for matching constant strings.Tom Lane2020-01-231-89/+83
* Add GUC ignore_invalid_pages.Fujii Masao2020-01-221-0/+20
* Further tweaking of jsonb_set_lax().Tom Lane2020-01-201-5/+6
* Silence minor compiler warnings.Tom Lane2020-01-191-0/+1
* Add GUC checks for ssl_min_protocol_version and ssl_max_protocol_versionMichael Paquier2020-01-181-2/+49
* Avoid full scan of GIN indexes when possibleAlexander Korotkov2020-01-181-6/+31
* Allocate freechunks bitmap as part of SlabContextTomas Vondra2020-01-171-7/+21
* Add a non-strict version of jsonb_setAndrew Dunstan2020-01-171-0/+64