summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2000-04-04Actually, that still wasn't quite right. If we skip a query because ofTom Lane
2000-04-04Fix bug noted by Bruce: FETCH in an already-aborted transaction blockTom Lane
2000-04-04When rewriting an aggregate introduced into WHERE, allow agg argument toTom Lane
2000-04-04Fix extremely nasty little bug observed when a sub-SELECT appears inTom Lane
2000-03-31Fix low-probability bug in relcache startup: write_irels wrote theTom Lane
2000-03-31Get rid of SetBufferWriteMode(), which was an accident waiting to happen.Tom Lane
2000-03-31New coding for SET provoked a 'var might be used uninitialized' warningTom Lane
2000-03-30Enable more flexible syntax for the SET command. Now allows single floats,Thomas G. Lockhart
2000-03-30Tweak indexscan cost estimation: round estimated # of tuples visited upTom Lane
2000-03-29Change rules for interpreting date/time input to disallow 1 and 3 characterThomas G. Lockhart
2000-03-27Allow full type names in CREATE FUNCTION arguments and return type.Thomas G. Lockhart
2000-03-26nodeAgg has always been willing to accept an aggregate with a finalFuncTom Lane
2000-03-26Updated user's guide to match new psql's output formatPeter Eisentraut
2000-03-24transformCreateStmt should put Ident nodes, not ColumnDef nodes, intoTom Lane
2000-03-24Save a few cycles in simple cases: no need to call cost_sort() when thereTom Lane
2000-03-24outfuncs.c was missing a print routine for Material plan nodes, leadingTom Lane
2000-03-24Rename bytea functions to not have upper-case letters in their names.Tom Lane
2000-03-23A little further tweaking of the range-query selectivity logic:Tom Lane
2000-03-23>> 5. empty define that results in an empty but terminated line ( ; )Bruce Momjian
2000-03-23Hmm, absolute pathnames for the copy makes sense. I'll whip up thatBruce Momjian
2000-03-23Float-to-int conversion functions should return NULL when given NULLTom Lane
2000-03-23Remove no-longer-necessary restriction against uplevel correlation varsTom Lane
2000-03-23Hack parse_coerce so it won't try to constant-fold the dummy ConstTom Lane
2000-03-23ExecSubPlan needs to be able to cope with RelabelType nodes atop theTom Lane
2000-03-23If we cannot get a real estimate for the selectivity of a range query,Tom Lane
2000-03-23Improve selectivity estimation involving string constants: pay attentionTom Lane
2000-03-22Repair logic flaw in cost estimator: cost_nestloop() was estimating CPUTom Lane
2000-03-21Add syntax for BIT() and BIT VARYING(), but no underlying implementationThomas G. Lockhart
2000-03-21Restructure planning code so that preprocessing of targetlist and qualsTom Lane
2000-03-21Correct typo in error message.Tom Lane
2000-03-20Reverse out BYTEA type coersion.Bruce Momjian
2000-03-20Turn XLOG off (do not create log file).Vadim B. Mikheev
2000-03-20Emit 'this operator is deprecated' warnings for ':' and ';'.Tom Lane
2000-03-20Update for BYTEAOID.Bruce Momjian
2000-03-20Add compatiblity information for bytea.Bruce Momjian
2000-03-20Add FORCE keyword to ColIDHiroshi Inoue
2000-03-19cash_words_out function truncated its output by 1 character due toTom Lane
2000-03-19Several calls to StrNCpy incorrectly subtracted 1 from the length arg,Tom Lane
2000-03-19Minor code rearrangement & doc improvement in eval_const_expressions().Tom Lane
2000-03-19transformExpr() did the Wrong Thing if applied to a SubLink node thatTom Lane
2000-03-19Another go-round with resolution of ambiguous functions and operators.Tom Lane
2000-03-19In can_coerce_type, verify that a possible type-coercion functionTom Lane
2000-03-18Improve error message wording in unary_op_error() --- suggest thatTom Lane
2000-03-18Clean up minor compiler warnings.Tom Lane
2000-03-18Modify lexing of multi-char operators per pghackers discussion aroundTom Lane
2000-03-18Just noticed that the grammar actually has no provision for '+' as aTom Lane
2000-03-18Add translation of timespan to interval.Bruce Momjian
2000-03-17Add safety check on expression nesting depth. Default value is set byTom Lane
2000-03-17Fix a bunch of minor portability problems and maybe-bugs revealed byTom Lane
2000-03-16Support full POSIX-style time zone: EST+3, PST-3, etc.Thomas G. Lockhart