aboutsummaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAge
* Fix Assert failure when a fastpath function call is attempted inside anTom Lane2006-06-11
* Fix copy-and-pasteo in Russian translation: message complaining aboutTom Lane2006-06-03
* Klugy fix for bug #2447: we can't expand a whole-row reference to NEWTom Lane2006-05-23
* Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane2006-05-21
* Change the backend to reject strings containing invalidly-encoded multibyteTom Lane2006-05-21
* Change \' to '', for SQL standards compliance. Backpatch to 7.3, 7.4,Bruce Momjian2006-05-21
* Fix nasty bug in nodeIndexscan.c's detection of duplicate tuples duringTom Lane2006-05-19
* Fix the sense of the test on DH_check()'s return value. This was preventingTom Lane2006-05-12
* Remove unnecessary .seg/.section directives, per Alan Stange.Tom Lane2006-05-11
* Fix SELECT INTO and CREATE TABLE AS to create tables in the defaultBruce Momjian2006-04-26
* Fix similar_escape() so that SIMILAR TO works properly for patterns involvingTom Lane2006-04-13
* TablespaceCreateDbspace should function normally even on platforms that do notTom Lane2006-03-29
* Repair longstanding error in btree xlog replay: XLogReadBuffer should beTom Lane2006-03-28
* The call to DNSServiceRegistrationCreate in postmaster.c does incorrectNeil Conway2006-03-18
* Minor teak.Tatsuo Ishii2006-03-04
* Tighten up SJIS byte sequence check. Now we reject invalid SJIS byteTatsuo Ishii2006-03-04
* Move btbulkdelete's vacuum_delay_point() call to a place in the loop whereTom Lane2006-02-14
* Fix qual_is_pushdown_safe to not try to push down quals involving a whole-rowTom Lane2006-02-13
* Fix bug in SET SESSION AUTHORIZATION that allows unprivileged users to crashTom Lane2006-02-12
* Check that SID is enabled while checking for Windows admin privileges.Tom Lane2006-02-10
* Change search for default operator classes so that it examines all opclassesTom Lane2006-02-10
* Reject out-of-range dates in date_in().Tom Lane2006-02-09
* Set progname early in the postmaster/postgres binary, rather than doingBruce Momjian2006-02-01
* Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane2006-01-30
* Fix display of whole-row Var appearing at the top level of a SELECT list.Tom Lane2006-01-26
* Repair longstanding bug in slru/clog logic: it is possible for two backendsTom Lane2006-01-21
* Avoid crashing if relcache flush occurs while trying to load data into anTom Lane2006-01-19
* It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane2006-01-19
* Repair problems with the result of lookup_rowtype_tupdesc() possibly beingTom Lane2006-01-17
* We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway2006-01-12
* Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane2006-01-12
* Add RelationOpenSmgr() calls to ensure rd_smgr is valid when we try toTom Lane2006-01-07
* Fix failure to apply domain constraints to a NULL constant that's added toTom Lane2006-01-06
* Fix Windows-only postmaster code to reject a connection request and continue,Tom Lane2006-01-06
* Convert Assert checking for empty page into a regular test and elog.Tom Lane2006-01-06
* Fix ReadBuffer() to correctly handle the case where it's trying to extendTom Lane2006-01-06
* Arrange to set the LC_XXX environment variables to match our locale setup.Tom Lane2006-01-05
* Remove DOS line endings ("\r\n") from several .po files. DOS line endingsNeil Conway2006-01-01
* Fix long standing Asian multibyte charsets bug.Tatsuo Ishii2005-12-24
* Adjust string comparison so that only bitwise-equal strings are consideredTom Lane2005-12-22
* Defend against crash while processing Describe Statement or Describe PortalTom Lane2005-12-14
* Fix a *different* problem with whole-row Vars afflicting 8.0 branch.Tom Lane2005-12-14
* Translation updatesREL8_0_5Peter Eisentraut2005-12-09
* Fix bgwriter's failure to release buffer pins and open files after anTom Lane2005-12-08
* In a nestloop inner indexscan, it's OK to use pushed-down baserestrictinfoTom Lane2005-12-06
* Retry in FileRead and FileWrite if Windows returns ERROR_NO_SYSTEM_RESOURCES.Tom Lane2005-12-01
* Check for overflow in strtol() while parsing datetime inputs.Tom Lane2005-12-01
* Rearrange code in pg_atoi() to avoid assuming that isspace() cannotTom Lane2005-11-30
* Fix performance issue in exprTypmod(): for a COALESCE expression, itTom Lane2005-11-18
* Force the second argument of SUBSTRING(foo FOR bar) to be int4, to avoidTom Lane2005-11-13