summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2007-02-11Add support for optionally escaping periods when converting SQL identifiersPeter Eisentraut
2007-02-09Call pgstat_drop_database during DROP DATABASE, so that any stats fileTom Lane
2007-02-09Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane
2007-02-08Reduce WAL activity for page splits:Bruce Momjian
2007-02-07Add a function pg_stat_clear_snapshot() that discards any statistics snapshotTom Lane
2007-02-07Add strlcat() from OpenBSD, to be used for replacing strncat and otherPeter Eisentraut
2007-02-06Move NAMEDATALEN definition from postgres_ext.h to pg_config_manual.h. ItPeter Eisentraut
2007-02-06Add support for cross-type hashing in hashed subplans (hashed IN/NOT IN casesTom Lane
2007-02-05Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant toTom Lane
2007-02-04Don't MAXALIGN in the checks to decide whether a tuple is over TOAST'sTom Lane
2007-02-03Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut
2007-02-02Repair failure to check that a table is still compatible with a previouslyTom Lane
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-01-31Rewrite uuid input and output routines to avoid dependency on theNeil Conway
2007-01-31Allow GIN's extractQuery method to signal that nothing can satisfy the query.Teodor Sigaev
2007-01-30Add support for cross-type hashing in hash index searches and hash joins.Tom Lane
2007-01-28Improve hash join to discard input tuples immediately if they can'tTom Lane
2007-01-28Rename the uuid_t type to pg_uuid_t, to avoid a conflict with anyNeil Conway
2007-01-28Add a new builtin type, "uuid". This implements a UUID type, similar toNeil Conway
2007-01-28Use autoconf build-in sys_siglist macro AC_DECL_SYS_SIGLIST, rather thanBruce Momjian
2007-01-28Use sys_siglist[] to print out signal names for signal exits, ratherBruce Momjian
2007-01-26On Windows, use pgwin32_waitforsinglesocket() instead of select() to wait forTom Lane
2007-01-26Squelch some VC++ compiler warnings. Mark float literals with the "f"Neil Conway
2007-01-25Update Win32 exception comment.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-25Add 'output file' option for pg_dumpall, especially useful for Win32,Bruce Momjian
2007-01-25Prevent WAL logging when COPY is done in the same transation thatBruce Momjian
2007-01-23Add comment about exception lists in both winnt.h and ntstatus.h.Bruce Momjian
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-22Uppercase hex value.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-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-20Fix xmlconcat by properly merging the XML declarations. Add aggregatePeter Eisentraut
2007-01-19Add support for converting binary values (i.e. bytea) into xml values,Peter Eisentraut
2007-01-19Change the sed rules in the regression test for pg_regress hackery to createAlvaro Herrera
2007-01-17Extend yesterday's patch so that the bgwriter is also told to forgetTom Lane
2007-01-16Implement width_bucket() for the float8 data type.Neil Conway
2007-01-16Arrange for autovacuum to be killed when another operation wants to be aloneAlvaro Herrera
2007-01-14Add support for xmlval IS DOCUMENT expression.Peter Eisentraut
2007-01-12Use XML output escaping also in XMLFOREST.Peter Eisentraut
2007-01-11Allow Borland CC to compile libpq and psql.Bruce Momjian