summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-03-04Prevent lazy_space_alloc from making requests that exceed MaxAllocSize,Tom Lane
2006-03-04Tighten up SJIS byte sequence check. Now we reject invalid SJIS byteTatsuo Ishii
2006-03-02Repair oidvectorrecv and int2vectorrecv, which I broke while changingTom Lane
2006-02-14Move btbulkdelete's vacuum_delay_point() call to a place in the loop whereTom Lane
2006-02-14Add some missing vacuum_delay_point calls in GIST vacuuming.Tom Lane
2006-02-13Fix qual_is_pushdown_safe to not try to push down quals involving a whole-rowTom Lane
2006-02-12Fix bug that allowed any logged-in user to SET ROLE to any other database userTom 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-31Allow %TYPE to be used with SETOF, per gripe from Murat Tasan.Tom Lane
2006-01-30Fix ALTER COLUMN TYPE bug: it sometimes tried to drop UNIQUE or PRIMARY KEYTom Lane
2006-01-29When building a bitmap scan, must copy the bitmapqualorig expression treeTom Lane
2006-01-29Fix code that checks to see if an index can be considered to match the query'sTom Lane
2006-01-26Fix display of whole-row Var appearing at the top level of a SELECT list.Tom Lane
2006-01-24Fix unportable usage of socklen_t: should use ACCEPT_TYPE_ARG3 macroTom Lane
2006-01-21Repair longstanding bug in slru/clog logic: it is possible for two backendsTom Lane
2006-01-20Fix thinko in autovacuum's test to skip temp tables: want to skip anyTom Lane
2006-01-19Add some test scaffolding to allow cache-flush stress testing (and I doTom 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-19Fix a tiny memory leak (one List header) in RelationCacheInvalidate().Tom Lane
2006-01-18Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane
2006-01-17Fix fsync code to test whether F_FULLFSYNC is available, instead ofTom 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-10Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane
2006-01-07Add RelationOpenSmgr() calls to ensure rd_smgr is valid when we try toTom Lane
2006-01-07During CatCacheRemoveCList, we must now remove any members that areTom 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-05Translation updatePeter Eisentraut
2006-01-05Arrange to set the LC_XXX environment variables to match our locale setup.Tom Lane
2006-01-04Fix another case in which autovacuum would fail while analyzingTom Lane
2006-01-02Reset flex state in a way that works for both flex 2.5.4 and 2.5.31.Tom Lane
2006-01-01Rewrite ProcessConfigFile() to avoid misbehavior at EOF, as per reportTom Lane
2006-01-01Remove DOS line endings ("\r\n") from several .po files. DOS line endingsNeil Conway
2005-12-30Repair EXPLAIN failure when trying to display a plan condition that involvesTom Lane
2005-12-28Add regression tests for CSV and \., and add automatic quoting of aBruce Momjian
2005-12-27Our code had:Bruce Momjian
2005-12-24Fix long standing Asian multibyte charsets bug.Tatsuo Ishii
2005-12-24Fix for rearranging encoding id ISO-8859-5 to ISO-8859-8.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 problem with whole-row Vars referencing sub-select outputs, perTom Lane
2005-12-10Teach deparsing of CASE expressions to cope with the simplified formsTom Lane