summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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
2000-03-16Turns out that Mazurkiewicz's gripe about 'function inheritance' isTom Lane
2000-03-16Fix some (more) problems with subselects in rules. Rewriter failed toTom Lane
2000-03-16 Hi,Bruce Momjian
2000-03-15Update comment obsoleted by Thomas's latest fixes.Tom Lane
2000-03-15Tweak GROUP BY so that it will still accept result-column names, but onlyTom Lane
2000-03-15Fix busted TRANSLATE() code --- it coredumped due to pfree()'ing theTom Lane
2000-03-15Remove another incorrect UserAbortTransactionBlock() call.Tom Lane
2000-03-15Remove gratuitous and incorrect begin/commit transaction calls inTom Lane
2000-03-15Add 'datetime' -> 'timestamp' conversion to xlateSqlFunc() to easeTom Lane
2000-03-14Cache fmgr lookup data for index's getnext() function in IndexScanDesc,Tom Lane