summaryrefslogtreecommitdiff
path: root/src/backend/utils
Commit message (Expand)AuthorAgeFilesLines
* Remove tabs after spaces in C commentsBruce Momjian2014-05-0666-512/+512
* Fix failure to detoast fields in composite elements of structured types.Tom Lane2014-05-011-0/+1
* Check for interrupts and stack overflow during rule/view dumps.Tom Lane2014-04-301-0/+13
* Fix processing of PGC_BACKEND GUC parameters on Windows.Tom Lane2014-04-051-0/+20
* Prevent interrupts while reporting non-ERROR elog messages.Tom Lane2014-03-131-13/+25
* Avoid memcpy() with same source and destination address.Heikki Linnakangas2014-03-071-1/+2
* Avoid getting more than AccessShareLock when deparsing a query.Tom Lane2014-03-061-2/+5
* Allow regex operations to be terminated early by query cancel requests.Tom Lane2014-03-012-0/+13
* Prevent potential overruns of fixed-size buffers.Tom Lane2014-02-171-5/+6
* Predict integer overflow to avoid buffer overruns.Noah Misch2014-02-175-15/+74
* Prevent privilege escalation in explicit calls to PL validators.Noah Misch2014-02-171-0/+85
* Shore up ADMIN OPTION restrictions.Noah Misch2014-02-171-10/+40
* Fix possible crashes due to using elog/ereport too early in startup.Tom Lane2014-01-112-1/+26
* Fix misplaced right paren bugs in pgstatfuncs.c.Kevin Grittner2013-12-271-4/+5
* Avoid potential buffer overflow crashPeter Eisentraut2013-11-231-1/+1
* Be more robust when strerror() doesn't give a useful result.Tom Lane2013-11-071-4/+183
* Fix some odd behaviors when using a SQL-style simple GMT offset timezone.Tom Lane2013-11-011-6/+0
* Make sure float4in/float8in accept all standard spellings of "infinity".Tom Lane2013-08-031-25/+81
* Fix old visibility bug in HeapTupleSatisfiesDirtyAlvaro Herrera2013-08-021-1/+2
* Fix regexp_matches() handling of zero-length matches.Tom Lane2013-07-312-8/+10
* Fix booltestsel() for case where we have NULL stats but not MCV stats.Tom Lane2013-07-241-12/+10
* Change post-rewriter representation of dropped columns in joinaliasvars.Tom Lane2013-07-231-1/+4
* Ensure 64bit arithmetic when calculating tapeSpaceStephen Frost2013-07-141-1/+1
* Guard against input_rows == 0 in estimate_num_groups().Tom Lane2013-05-101-0/+8
* Fix longstanding race condition in plancache.c.Tom Lane2013-04-201-6/+24
* Fix to_char() to use ASCII-only case-folding rules where appropriate.Tom Lane2013-03-051-25/+113
* Fix overflow check in tm2timestamp (this time for sure).Tom Lane2013-03-041-2/+3
* Prevent execution of enum_recv() from SQL.Tom Lane2013-02-041-0/+5
* Reject out-of-range dates in to_date().Tom Lane2013-01-141-0/+6
* Add defenses against integer overflow in dynahash numbuckets calculations.Tom Lane2012-12-111-11/+38
* Fix assorted bugs in CREATE INDEX CONCURRENTLY.Tom Lane2012-11-291-1/+18
* Improve handling of INT_MIN / -1 and related cases.Tom Lane2012-11-192-83/+115
* Limit values of archive_timeout, post_auth_delay, auth_delay.milliseconds.Tom Lane2012-11-181-2/+2
* Fix the int8 and int2 cases of (minimum possible integer) % (-1).Tom Lane2012-11-142-2/+23
* Fix memory leaks in record_out() and record_send().Tom Lane2012-11-131-12/+40
* Fix hash_search to avoid corruption of the hash table on out-of-memory.Tom Lane2012-10-191-16/+25
* Fix ruleutils to print "INSERT INTO foo DEFAULT VALUES" correctly.Tom Lane2012-10-191-5/+13
* Fix access past end of string in date parsing.Heikki Linnakangas2012-10-021-1/+4
* Fix cascading privilege revoke to notice when privileges are still held.Tom Lane2012-08-231-2/+2
* Prevent access to external files/URLs via XML entity references.Tom Lane2012-08-141-0/+28
* Fix bugs with parsing signed hh:mm and hh:mm:ss fields in interval input.Tom Lane2012-08-031-6/+10
* Prevent corner-case core dump in rfree().Tom Lane2012-07-151-2/+1
* Back-patch fix for extraction of fixed prefixes from regular expressions.Tom Lane2012-07-102-166/+103
* Back-patch addition of pg_wchar-to-multibyte conversion functionality.Tom Lane2012-07-102-44/+232
* Refactor pattern_fixed_prefix() to avoid dealing in incomplete patterns.Tom Lane2012-07-091-115/+47
* Ignore SECURITY DEFINER and SET attributes for a PL's call handler.Tom Lane2012-05-301-4/+10
* Expand the allowed range of timezone offsets to +/-15:59:59 from Greenwich.Tom Lane2012-05-302-7/+4
* Fix string truncation to be multibyte-aware in text_name and bpchar_name.Tom Lane2012-05-253-22/+14
* Fix printing of whole-row Vars at top level of a SELECT targetlist.Tom Lane2012-04-271-13/+32
* Fix an Assert that turns out to be reachable after all.Tom Lane2012-04-091-2/+7