summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
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
2000-03-14Implement column aliases on views "CREATE VIEW name (collist)".Thomas G. Lockhart
2000-03-14Marginal performance improvement in LockBuffer --- calculate addressTom Lane
2000-03-14> I have improved the System V semaphore emulation of the QNX4 port.Bruce Momjian
2000-03-14Fix some bogosities in the code that deals with estimating the fractionTom Lane
2000-03-13Extend numeric_round and numeric_trunc to accept negative scale inputsTom Lane
2000-03-13Remove unnecessary limitations on lengths of bpchar and varchar constants.Tom Lane
2000-03-13Performance improvement for lexing long strings: increase flex'sTom Lane
2000-03-12Somehow, the variant NATIONAL CHAR [ VARYING ] was missing from theTom Lane
2000-03-12Fix performance bug in constant-expression simplifier. After findingTom Lane
2000-03-12Fix performance problem in fireRIRonSubselect: with nested subqueries,Tom Lane
2000-03-12Clean up grammar's handling of NULL in expressions: a_expr_or_null isTom Lane
2000-03-11Further tweaking of logic that decides when to materialize an uncorrelatedTom Lane