summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2005-04-24Update VACUUM VERBOSE FSM message, per Tom.Bruce Momjian
2005-04-23Repair two TIME WITH TIME ZONE bugs found by Dennis Vshivkov. ComparisonTom Lane
2005-04-23Remove useless argtype_inherit() code, and make consequent simplifications.Tom Lane
2005-04-23Remove explicit FreeExprContext calls during plan node shutdown. TheTom Lane
2005-04-23Update VACUUM VERBOSE update, per Alvaro.Bruce Momjian
2005-04-23Update working of VACUUM VERBOSE.Bruce Momjian
2005-04-23Make VACUUM VERBOSE FSM output all output in a single INFO outputBruce Momjian
2005-04-23Add comment about checkpoint panic behavior during shutdown, perTom Lane
2005-04-23Allow -2147483648 to be treated as an INT4 rather than INT8 constant.Tom Lane
2005-04-23Recent changes got the sense of the notnull bit backwards in the 2.0Tom Lane
2005-04-23Define the right-hand input of AT TIME ZONE as a full a_expr instead ofTom Lane
2005-04-23Modify output of VACUUM VERBOSE to be clearer.Bruce Momjian
2005-04-23Turns out that my recent elimination of the 'redundant' flatten_andors()Tom Lane
2005-04-23Teach choose_bitmap_and() to actually be choosy --- that is, try toTom Lane
2005-04-23Fix bogus EXPLAIN display of rowcount estimates for BitmapAnd andTom Lane
2005-04-22First cut at planner support for bitmap index scans. Lots to do yet,Tom Lane
2005-04-21Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane
2005-04-21Install some slightly realistic cost estimation for bitmap index scans.Tom Lane
2005-04-20Don't try to run clauseless index scans on index types that don't supportTom Lane
2005-04-20Fix mis-display of negative fractional seconds in interval values forTom Lane
2005-04-20Minor performance improvement: avoid unnecessary creation/unioning ofTom Lane
2005-04-19Create executor and planner-backend support for decoupled heap and indexTom Lane
2005-04-19Attached patch gets rid of the global timezone in the following steps:Bruce Momjian
2005-04-18record_in and record_recv must be careful to return a separatelyTom Lane
2005-04-17Initial implementation of lossy-tuple-bitmap data structures.Tom Lane
2005-04-17Fix comment typo.Bruce Momjian
2005-04-16Create a new 'MultiExecProcNode' call API for plan nodes that don'tTom Lane
2005-04-15Reduce PANIC to ERROR in several xlog routines that are used in bothTom Lane
2005-04-15Modify MoveOfflineLogs/InstallXLogFileSegment to avoid O(N^2) behaviorTom Lane
2005-04-15Remove an unused variable "waitingForSignal". From Qingqing Zhou.Neil Conway
2005-04-14Make equalTupleDescs() compare attlen/attbyval/attalign rather thanTom Lane
2005-04-14Put back blessing of record-function tupledesc, which I removed in aTom Lane
2005-04-14Don't try to constant-fold functions returning RECORD, since the optimizerTom Lane
2005-04-14Marginal hack to use a specialized hash function for dynahash hashtablesTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-13Simplify initdb-time assignment of OIDs as I proposed yesterday, andTom Lane
2005-04-13Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane
2005-04-12Fix oversight in MIN/MAX optimization: must not return NULL entriesTom Lane
2005-04-12Add aggsortop column to pg_aggregate, so that MIN/MAX optimization canTom Lane
2005-04-11Create the planner mechanism for optimizing simple MIN and MAX queriesTom Lane
2005-04-11Fix interaction between materializing holdable cursors and firingTom Lane
2005-04-11PersistHoldablePortal must establish the correct value for ActiveSnapshotTom Lane
2005-04-10Make constant-folding produce sane output for COALESCE(NULL,NULL),Tom Lane
2005-04-10Split out into a separate function the code in grouping_planner() thatTom Lane
2005-04-10SQL functions returning pass-by-reference types were copying the resultsTom Lane
2005-04-08If we're going to have a non-panic check for held_lwlocks[] overrun,Tom Lane
2005-04-08Use an always-there test, not an Assert, to check for overrun ofTom Lane
2005-04-08Change the default setting of "add_missing_from" to false. This has beenNeil Conway
2005-04-08Use fork_process() to avoid some fork()-related boilerplate code whenNeil Conway