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