summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-03-21Native shared memory implementation for win32.Magnus Hagander
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-17Simplified sortby ruleMichael Meskes
2007-03-17SPI_cursor_open failed to enforce that only read-only queries could beTom Lane
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-14Fix a longstanding bug in VACUUM FULL's handling of update chains. The codeTom 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-08Fix vac_update_relstats to ensure it always sends a relcache inval message,Tom Lane
2007-03-07Cleanup the bootstrap code a little, and rename "dummy procs" in the codeAlvaro Herrera
2007-03-06Fix oversight in original coding of inline_function(): sinceTom Lane
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-05Fix a typo in a comment. Heikki Linnakangas.Neil Conway
2007-03-03Split _bt_insertonpg to two functions.Bruce Momjian
2007-03-03Fix for COPY-after-truncate feature.Bruce Momjian
2007-03-03Remove undo information from pg_controldata --- never used.Bruce Momjian
2007-03-03Add lo_truncate() to backend and libpq for large object truncation.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-02Suppress useless searches for unused line pointers in PageAddItem. To doTom Lane
2007-03-01Fix miscalculation of stats collector's write delay, introduced in revision 1...Tom Lane
2007-03-01Fix markQueryForLocking() to work correctly in the presence of nested views.Tom Lane
2007-03-01Fix date/time formats for XML Schema output.Peter Eisentraut
2007-02-28Remove temporary Windows-specific debugging code.Magnus Hagander
2007-02-27Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane
2007-02-27Allow information schema definitions to work without requiring implicitPeter Eisentraut
2007-02-27Get rid of the separate EState for subplans, and just let them share theTom Lane
2007-02-25Put back copyObject() call I removed in a fit of brain fade. This oneTom 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-22Fix bug I introduced in recent patch to make hash joins discard null tuplesTom Lane
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-02-21Update new optional VACUUM FULL hint for translations, per Alvaro.Bruce Momjian
2007-02-21Move increase FSM warning to after lazy_truncate_heap() because theBruce Momjian
2007-02-21btree source code cleanups:Bruce Momjian
2007-02-21Add configure --enable-profiling to enable GCC profiling. Patches fromBruce Momjian
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