summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-10-24Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problemsTom Lane
2007-10-24Rearrange vacuum-related bits in PGPROC as a bitmask, to better supportAlvaro Herrera
2007-10-24Fix an error in make_outerjoininfo introduced by my patch of 30-Aug: the codeTom Lane
2007-10-24Minor changes to autovacuum worker: change error handling so that it continuesAlvaro Herrera
2007-10-24Fix UPDATE/DELETE WHERE CURRENT OF to support repeated update and update-Tom Lane
2007-10-24Keep heap_page_prune from marking the buffer dirty when it didn'tTom Lane
2007-10-24Set read_only = TRUE while evaluating input queries for ts_rewrite()Tom Lane
2007-10-24Remove the aggregate form of ts_rewrite(), since it doesn't work as desiredTom Lane
2007-10-23Rename and slightly redefine the default text search parser's "word"Tom Lane
2007-10-23Use snprintf instead of wsprintf, and use getenv("APPDATA") instead ofMagnus Hagander
2007-10-23Fix two-argument form of ts_rewrite() so it actually works for cases whereTom Lane
2007-10-23Fix several bugs in tsvectorin, including crash due to uninitialized field andTom Lane
2007-10-22Adjust ts_debug's output as per my proposal of yesterday: show theTom Lane
2007-10-22Remove an Assert that's been obsoleted by recent changes in the parsetreeTom Lane
2007-10-22Add a useless return statement to suppress a warning seen with someTom Lane
2007-10-21Fix shared tsvector/tsquery input code so that we don't say "syntax error inTom Lane
2007-10-20Adjust error message to agree with documentation. The tsearch documentationTom Lane
2007-10-19Found another small glitch in tsearch API: the two versions of ts_lexize()Tom Lane
2007-10-16Tweak toast-related logic in heapam.c so that the toaster is only invokedTom Lane
2007-10-16Re-allow UTF8 encodings on win32. Since UTF8 is converted toMagnus Hagander
2007-10-15Fix pg_wchar_table[] to match revised ordering of the encoding ID enum.Tom Lane
2007-10-15Include NOLOGIN roles in the 'flat' password file. In the originalTom Lane
2007-10-13Migrate the former contrib/txid module into core. This will make it easierTom Lane
2007-10-13Guard against possible double free during error escape from XMLTom Lane
2007-10-13Fix the inadvertent libpq ABI breakage discovered by Martin Pitt: theTom Lane
2007-10-13Fix ALTER COLUMN TYPE to preserve the tablespace and reloptions of indexesTom Lane
2007-10-13Teach planagg.c that partial indexes specifying WHERE foo IS NOT NULL can beTom Lane
2007-10-12When telling the bgwriter that we need a checkpoint because too much xlogTom Lane
2007-10-12Remove hack in pg_tablespace_aclmask() that disallowed permissionsTom Lane
2007-10-11Ensure that the result of evaluating a function during constant-expressionTom Lane
2007-10-11Remove incorrect use of VARSIZE() on a toasted datum. We can just remove itTom Lane
2007-10-11Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane
2007-10-06Make dumpcolors() have tolerable performance when using 32-bit chr,Tom Lane
2007-10-06Adjust some regex debugging printouts to not give wrong-format-widthTom Lane
2007-10-04Keep the planner from failing on "WHERE false AND something IN (SELECT ...)".Tom Lane
2007-10-04Change Assert() to a plain test and elog, just to see if that worksTom Lane
2007-10-01Avoid assuming that struct varattrib_pointer doesn't get padded by theTom Lane
2007-09-30Add an extra header byte to TOAST-pointer datums to represent their sizeTom Lane
2007-09-30Adjust recovery PS display as agreed with Simon: 'waiting for XXX'Tom Lane
2007-09-29Make recovery show the current input WAL segment name in the startupTom Lane
2007-09-29Disallow CLUSTER using an invalid index (that is, one left over from a failedTom Lane
2007-09-29Improve consistency of the error messages generated when you try to useTom Lane
2007-09-29Make archive recovery always start a new timeline, rather than only when aTom Lane
2007-09-28Change initdb and CREATE DATABASE to actively reject attempts to createTom Lane
2007-09-27Add virtual transaction IDs to CSVLOG output, so that messages coming fromTom Lane
2007-09-27Fix Assert failure in ExpandColumnRefStar --- what I thought was a can'tTom Lane
2007-09-26Some small tuptoaster improvements from Greg Stark. Avoid unnecessaryTom Lane
2007-09-26Minor improvements in backup and recovery:Tom Lane
2007-09-26Adjust the new memory limit in the lazy vacuum code to use MaxHeapTuplesPerPageAlvaro Herrera
2007-09-26Create a function variable "join_search_hook" to let plugins override theTom Lane