summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2005-04-25On further experimentation, there were still a couple of bugs inTom Lane
2005-04-25Fix ExpandIndirectionStar to handle cases where the expression to beTom Lane
2005-04-25get_expr_result_type probably needs to be able to handle OpExpr as wellTom Lane
2005-04-25Avoid rechecking lossy operators twice in a bitmap scan plan.Tom Lane
2005-04-25While determining the filter clauses for an index scan (either plainTom Lane
2005-04-25Replace slightly klugy create_bitmap_restriction() function with aTom Lane
2005-04-25Remove support for OR'd indexscans internal to a single IndexScan planTom Lane
2005-04-24Adjust nodeBitmapIndexscan.c to not keep the index open across calls,Tom Lane
2005-04-24Actually, nodeBitmapIndexscan.c doesn't need to create a standardTom Lane
2005-04-24Put back example of using Result node to execute an INSERT.Tom Lane
2005-04-24Update some comments to use SQL examples rather than QUEL. From SimonNeil Conway
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-20Make pg_ctl status do a kill() test to verify that the PID found inTom 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-18pg_dumpall should enforce the server version check for itself, ratherTom Lane
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-15Revert addition of poorly-thought-out DUMP TIMESTAMP archive entry,Tom Lane
2005-04-15This patch changes the use of varargs.h to stdarg.h asNeil Conway
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-14Must count '*' characters as potential arguments.Tom Lane
2005-04-14Marginal hack to use a specialized hash function for dynahash hashtablesTom Lane