summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Expand)Author
2007-04-06Make 'col IS NULL' clauses be indexable conditions.Tom Lane
2007-04-06Support varlena fields with single-byte headers and unaligned storage.Tom Lane
2007-04-05Update XML error message text for missing libxml; update regressionBruce Momjian
2007-04-05Improve documentation/warning when --with-libxml is not used in theBruce Momjian
2007-04-02Check length of enum literals on definition and input to make sure they will ...Andrew Dunstan
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-04-01Mapping schemas and databases to XML and XML Schema.Peter Eisentraut
2007-03-30Add some instrumentation to the bgwriter, through the stats collector.Magnus Hagander
2007-03-29Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane
2007-03-28Code cleanup for the new regexp UDFs: we can hardcode the OID and someNeil Conway
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-27Fix typo in Makefile.Bruce Momjian
2007-03-26Remove advertising clause from Berkeley BSD-licensed files, perBruce Momjian
2007-03-26Fix pg_wchar_table's maxmblen field of EUC_CN, EUC_TW, MULE_INTERNALTatsuo Ishii
2007-03-26Fix plancache's invalidation callback to do the right thing for a SITom Lane
2007-03-25Clean up the representation of special snapshots by including a "methodTom Lane
2007-03-25Add new encoding EUC_JIS_2004 and SHIFT_JIS_2004,Tatsuo Ishii
2007-03-23Fix plancache so that any required replanning is done with the sameTom Lane
2007-03-23Allow 4 bytes UTF-8 (UCS-4 range 00010000-001FFFFF)Tatsuo Ishii
2007-03-22Commit newest version of xmlpath().Bruce Momjian
2007-03-22Add xmlpath() to evaluate XPath expressions, with namespaces support.Bruce Momjian
2007-03-21Fix some problems with selectivity estimation for partial indexes.Tom Lane
2007-03-20Add three new regexp functions: regexp_matches, regexp_split_to_array,Neil Conway
2007-03-19Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck
2007-03-19Fix 8.2 breakage of domains over array types, and add a regression test caseTom Lane
2007-03-18Code cleanup: mark some variables with the "const" modifier, when theyNeil Conway
2007-03-17Ooops, got only one of the two ArrayExpr variants correct in firstTom Lane
2007-03-17Fix up the remaining places where the expression node structure would loseTom Lane
2007-03-16Add new columns for tuple statistics on a database level toMagnus Hagander
2007-03-15Make use of plancache module for SPI plans. In particular, since plpgsqlTom Lane
2007-03-13Reverted waiting for further fixes:Peter Eisentraut
2007-03-13Properly use pg_strcasecmp() instead of strcasecmp().Magnus Hagander
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-03-12Make configuration parameters fall back to their default values when theyPeter Eisentraut
2007-03-11Fix a race condition that caused pg_database_size() and pg_tablespace_size()Alvaro Herrera
2007-03-06Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian
2007-03-05Remove copied comments from geo_ops.c source file and replace with newBruce Momjian
2007-03-03Fix for COPY-after-truncate feature.Bruce Momjian
2007-03-03Add resetStringInfo(), which clears the content of a StringInfo, andNeil Conway
2007-03-03Add GUC log_lock_waits to log long wait times.Bruce Momjian
2007-03-02Make log_min_error_statement put LOG level at the same priority asTom Lane
2007-03-01Fix date/time formats for XML Schema output.Peter Eisentraut
2007-02-27Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane
2007-02-23Now that plans have flat rangetable lists, it's a lot easier to get EXPLAIN toTom Lane
2007-02-23Move BLCKSZ < 1024 check to guc.c.Bruce Momjian
2007-02-22Change Agg and Group nodes so that Vars contained in their targetlistsTom Lane
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane
2007-02-19Add "isodow" option to EXTRACT() and date_part() where Sunday = 7.Bruce Momjian
2007-02-19Get rid of some old and crufty global variables in the planner. WhenTom Lane