summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-01-28Rename the uuid_t type to pg_uuid_t, to avoid a conflict with anyNeil Conway
2007-01-28Remove some unnecessary conversion work in build_regtype_array().Tom Lane
2007-01-28Repair oversight in creation of "append relations": we should set upTom Lane
2007-01-28Add a new builtin type, "uuid". This implements a UUID type, similar toNeil Conway
2007-01-28Clean up broken usage of HAVE_DECL_SYS_SIGLIST and inconsistent/poorlyTom Lane
2007-01-28Use autoconf build-in sys_siglist macro AC_DECL_SYS_SIGLIST, rather thanBruce Momjian
2007-01-28Dept of second thoughts: the IQ of estimate_array_length() needs to beTom Lane
2007-01-28Fix scalararraysel() to cope with binary-compatible cases, such as text[]Tom Lane
2007-01-28Use sys_siglist[] to print out signal names for signal exits, ratherBruce Momjian
2007-01-27Correct an old logic error in btree page splitting: when considering a splitTom Lane
2007-01-27Reactivate libxml memory management via palloc, now that I think I'vePeter Eisentraut
2007-01-27Add trailing zero byte in Unicode codepoint conversion.Peter Eisentraut
2007-01-26On Windows, use pgwin32_waitforsinglesocket() instead of select() to wait forTom Lane
2007-01-25Correction: temp_tablespaces was implemented by Albert Cervera Areny,Bruce Momjian
2007-01-25Various fixes in the logic of XML functions:Peter Eisentraut
2007-01-25Add GUC temp_tablespaces to provide a default location for temporaryBruce Momjian
2007-01-25Properly detoast access to bytea field pg_trigger.tgargs. Old codeBruce Momjian
2007-01-25Prevent WAL logging when COPY is done in the same transation thatBruce Momjian
2007-01-24Get pg_utf_mblen(), pg_utf2wchar_with_len(), and utf2ucs() all on the sameTom Lane
2007-01-24Relax an Assert() that has been found to be too strict in some situationsTom Lane
2007-01-23Simplify handling of XML error messages: Just use the string provided byPeter Eisentraut
2007-01-23Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane
2007-01-23Back out use of FormatMessage(), does error values, not exceptionBruce Momjian
2007-01-23Print meaningfull error text for abonormal process exit on Win32, ratherBruce Momjian
2007-01-22Put back planner's ability to cache the results of mergejoinscansel(),Tom Lane
2007-01-22Use errhint() for WIN32 SIGTERM message, where possible.Bruce Momjian
2007-01-22When system() fails in Win32, report it as an exception, print theBruce Momjian
2007-01-22Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_procTom Lane
2007-01-21Refactor some lsyscache routines to eliminate duplicate code and saveTom Lane
2007-01-20Simplify pg_am representation of ordering-capable access methods:Tom Lane
2007-01-20Make setseed() return void, rather than an int4 without any use. PerNeil Conway
2007-01-20Add documentation of memory and time units to postgresql.conf.Bruce Momjian
2007-01-20Don't use 'int' where you mean 'bool'.Tom Lane
2007-01-20Refactor planner's pathkeys data structure to create a separate, explicitTom Lane
2007-01-20Refactor the index AM API slightly: move currentItemData andNeil Conway
2007-01-20Remove remains of old depend target.Peter Eisentraut
2007-01-20Modify max_fsm_pages in postgresql.conf.sample to show a typical value,Bruce Momjian
2007-01-20Move code that places LOG error level between ERROR and PANIC into newBruce Momjian
2007-01-20Fix xmlconcat by properly merging the XML declarations. Add aggregatePeter Eisentraut
2007-01-20Add missing copyright blurb, make ruleutils.c use the standard layoutNeil Conway
2007-01-19Add support for converting binary values (i.e. bytea) into xml values,Peter Eisentraut
2007-01-18Clean up encoding issues in the xml type: In text mode, encodingPeter Eisentraut
2007-01-17Add a note pointing out that is_pseudo_constant_clause() doesn't checkTom Lane
2007-01-17Extend yesterday's patch so that the bgwriter is also told to forgetTom Lane
2007-01-17Revise bgwriter fsync-request mechanism to improve robustness when a tableTom Lane
2007-01-16Implement width_bucket() for the float8 data type.Neil Conway
2007-01-16Fix incorrect permissions check in information_schema.key_column_usage view:Tom Lane
2007-01-16Enable autovacuum in the default configuration, per discussion.Alvaro Herrera
2007-01-16Arrange for autovacuum to be killed when another operation wants to be aloneAlvaro Herrera
2007-01-14Fix reverse compilation of IS DOCUMENT expression.Peter Eisentraut