aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt
Commit message (Expand)AuthorAge
* Refactor from Heikki Linnakangas <heikki@enterprisedb.com>:Teodor Sigaev2007-09-11
* Rename recently-added pg_stat_activity column from txn_start to xact_start,Tom Lane2007-09-11
* Arrange for SET LOCAL's effects to persist until the end of the current topTom Lane2007-09-11
* Change void* opaque argument to Datum type, add argument'sTeodor Sigaev2007-09-10
* Improvements from Heikki Linnakangas <heikki@enterprisedb.com>Teodor Sigaev2007-09-07
* Improving various checks by Heikki Linnakangas <heikki@enterprisedb.com>Teodor Sigaev2007-09-07
* Refactoring by Heikki Linnakangas <heikki@enterprisedb.com> withTeodor Sigaev2007-09-07
* Implement lazy XID allocation: transactions that do not modify any databaseTom Lane2007-09-05
* Provide for binary input/output of enums, to fix complaint from Merlin Moncure.Andrew Dunstan2007-09-04
* Apply a band-aid fix for the problem that 8.2 and up completely misestimateTom Lane2007-08-31
* Install check_stack_depth() protection in two recursive tsqueryTom Lane2007-08-31
* Fix int8mul so that overflow check is applied correctly for INT64_IS_BUSTEDTom Lane2007-08-30
* Relax permissions checks on dbsize functions, per discussion. Revert out allTom Lane2007-08-29
* Remove the 'not in' operator (!!=). This was a hangover from BerkeleyTom Lane2007-08-27
* Restrict pg_relation_size to relation owner, pg_database_size to DB owner,Tom Lane2007-08-27
* Make currtid() functions require SELECT privileges on the target table.Tom Lane2007-08-27
* Remove extraneous semicolon --- buildfarm member bear, for one,Tom Lane2007-08-21
* Fix cash_mul_int4 and cash_div_int4 for overenthusiastic substitutionTom Lane2007-08-21
* Fix money type's send/receive functions to conform to recent wideningTom Lane2007-08-21
* Fix potential access-off-the-end-of-memory in varbit_out(): it fetched theTom Lane2007-08-21
* Fix a small 64-bit problem in tsearch patch.Tom Lane2007-08-21
* Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane2007-08-21
* Provide for logfiles in machine readable CSV format. In consequence, renameAndrew Dunstan2007-08-19
* Repair problems occurring when multiple RI updates have to be done to the sameTom Lane2007-08-15
* Avoid memory leakage across successive calls of regexp_matches() orTom Lane2007-08-11
* Code review for regexp_matches/regexp_split patch. Refactor to avoid assumingTom Lane2007-08-11
* Fix up bad layout of some comments (probably pg_indent's fault), andTom Lane2007-08-04
* Switch over to using the src/timezone functions for formatting timestampsTom Lane2007-08-04
* Make replace(), split_part(), and string_to_array() behave somewhat sanelyTom Lane2007-07-19
* Properly adjust age() seconds to match the sign of the larger units.Bruce Momjian2007-07-18
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-17
* Fix map_sql_typecoll_to_xmlschema_types() to not fail on droppedTom Lane2007-07-13
* Fix a portability bug (ye olde not casting a <ctype.h> argument toTom Lane2007-07-12
* Compute max and min int8 values using unsigned arithmetic, in hopes ofTom Lane2007-07-12
* Fix stddev_pop(numeric) and var_pop(numeric), which were incorrectly producingTom Lane2007-07-09
* Fix up hash functions for datetime datatypes so that they don't takeTom Lane2007-07-06
* Fix a passel of ancient bugs in to_char(), including two distinct bufferTom Lane2007-06-29
* Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane2007-06-28
* Remove unused "caller" argument from stringToQualifiedNameList.Alvaro Herrera2007-06-26
* Arrange for quote_identifier() and pg_dump to not quote keywords that areTom Lane2007-06-18
* Tweak the API for per-datatype typmodin functions so that they are passedTom Lane2007-06-15
* Fix DecodeDateTime to allow timezone to appear before year. This hadTom Lane2007-06-12
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-11
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-11
* Allow numeric_fac() to be interrupted, since it can take quite a while forTom Lane2007-06-09
* Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane2007-06-06
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-05
* Fix erroneous error reporting for overlength input in text_date(),Tom Lane2007-06-02
* Improve efficiency of LIKE/ILIKE code, especially for multi-byte charsets,Andrew Dunstan2007-06-02
* Allow leading and trailing whitespace in the input to the booleanNeil Conway2007-06-01