summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2008-03-24Use new errdetail_log() mechanism to provide a less klugy way of reportingTom Lane
2008-03-24Fix various infelicities that have snuck into usage of errdetail() andTom Lane
2008-03-24Adjust the recent patch for reporting of deadlocked queries so that we reportTom Lane
2008-03-24Add a new ereport auxiliary function errdetail_log(), which works the same asTom Lane
2008-03-23Avoid a useless tuple copy within nodeMaterial. Neil ConwayTom Lane
2008-03-23Create a function quote_nullable(), which works the same as quote_literal()Tom Lane
2008-03-22Refactor to_char/to_date formatting code; primarily, replace DCH_processorTom Lane
2008-03-22Add server side lo_import(filename, oid) function.Tatsuo Ishii
2008-03-21Remove TypeName struct's timezone flag, which has been write-only storageTom Lane
2008-03-21Give an explicit error for serial[], rather than silently ignoringTom Lane
2008-03-21Report the current queries of all backends involved in a deadlockTom Lane
2008-03-21More README src cleanups.Bruce Momjian
2008-03-21Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventingTom Lane
2008-03-20Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane
2008-03-20Add a couple of missing FreeQueryDesc calls. Noticed while testing aAlvaro Herrera
2008-03-20Make source code READMEs more consistent. Add CVS tags to all README files.Bruce Momjian
2008-03-20Add the missing cyrillic "Yo" characters ('e' and 'E' with two dots) to theHeikki Linnakangas
2008-03-19Remove another useless snapshot creation.Alvaro Herrera
2008-03-19Support ALTER TYPE RENAME. Petr JelinekTom Lane
2008-03-19We no longer need a snapshot set after opening the finishing transaction: thisAlvaro Herrera
2008-03-19Fix regexp substring matching (substring(string from pattern)) for the cornerTom Lane
2008-03-18Arrange to "inline" SQL functions that appear in a query's FROM clause,Tom Lane
2008-03-18Catch all errors in for and while loops in makefiles. Don't ignore anyPeter Eisentraut
2008-03-18Move elog(DEBUG4) call outside the locked area, per suggestion from Tom Lane.Alvaro Herrera
2008-03-18Advance multiple array keys rightmost-first instead of leftmost-firstTom Lane
2008-03-17Enable probes to work with Mac OS X Leopard and other OSes that willPeter Eisentraut
2008-03-17We need to rebuild objfiles.txt when one of the subdirectories' objfiles.txtPeter Eisentraut
2008-03-17Fix postgres --describe-config for guc enums, breakage noted by Alvaro.Magnus Hagander
2008-03-17Revert thinko introduced into prefix_selectivity() by my recent patch:Tom Lane
2008-03-17Move ProcState definition into sinvaladt.c from sinvaladt.h, since it's notAlvaro Herrera
2008-03-17Grab some low-hanging fruit in the new hash index build code.Tom Lane
2008-03-17Fix TransactionIdIsCurrentTransactionId() to use binary search instead ofTom Lane
2008-03-16When creating a large hash index, pre-sort the index entries by estimatedTom Lane
2008-03-16Modify interactions between sinval.c and sinvaladt.c. The code that actuallyAlvaro Herrera
2008-03-16Some cleanups of enum-guc code, per comments from Tom.Magnus Hagander
2008-03-15Change hash index creation so that rather than always establishing exactlyTom Lane
2008-03-14Fix inappropriately-timed memory context switch in autovacuum_do_vac_analyze.Tom Lane
2008-03-14Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera
2008-03-13Fix varstr_cmp's special case for UTF8 encoding on Windows so that stringsTom Lane
2008-03-13Fix heap_page_prune's problem with failing to send cache invalidationTom Lane
2008-03-12Fix pg_plan_queries() to restore the previous setting of ActiveSnapshotTom Lane
2008-03-12Fix LISTEN/NOTIFY race condition reported by Laurent Birtz, by postponingTom Lane
2008-03-11Make TransactionIdIsInProgress check transam.c's single-item XID status cacheTom Lane
2008-03-10Provide a build-time option to store large relations as single files, ratherTom Lane
2008-03-10Fix unportable coding of new error message, per Kris Jurka.Tom Lane
2008-03-10Implement enum type for guc parameters, and convert a couple of existingMagnus Hagander
2008-03-10Document and enforce that the usable range of setseed() arguments isTom Lane
2008-03-10Throw an error for negative LIMIT or OFFSET values, instead of silentlyTom Lane
2008-03-10Increase the default value of log_min_messages to WARNING, so thatTom Lane
2008-03-10Add a CaseSensitive parameter to synonym dictionaries.Tom Lane