summaryrefslogtreecommitdiff
path: root/src/backend/nodes
AgeCommit message (Expand)Author
2004-03-17Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane
2004-03-14Tweak planner so that index expressions and predicates are matched toTom Lane
2004-03-11Add NOWAIT option to LOCK commandTatsuo Ishii
2004-01-31Micro-opt: replace calls likeNeil Conway
2004-01-22Correct error introduced in recent hasoids changes --- it's not a boolTom Lane
2004-01-14Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane
2004-01-10Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway
2004-01-09Remove duplicate include of value.h. I think it got in because Tom and I bot...Bruce Momjian
2004-01-09Allow libpq to do thread-safe SIGPIPE handling. This allows it toBruce Momjian
2004-01-07Add missing inclusion of nodes/value.h.Tom Lane
2004-01-07More janitorial work: remove the explicit casting of NULL literals to aNeil Conway
2004-01-07Cleanup: move the 'Value' node into a separate file, rather than puttingNeil Conway
2004-01-06Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane
2004-01-06Instead of rechecking lossy index operators by putting them into theTom Lane
2004-01-05Adjust indexscan planning logic to keep RestrictInfo nodes associatedTom Lane
2004-01-05Improve UniquePath logic to detect the case where the input is alreadyTom Lane
2004-01-05Add the ability to extract OR indexscan conditions from OR-of-ANDTom Lane
2004-01-04Merge restrictlist_selectivity into clauselist_selectivity byTom Lane
2004-01-04Rewrite OR indexscan processing to be more flexible. We can now for theTom Lane
2003-12-30Adjust the definition of RestrictInfo's left_relids and right_relidsTom Lane
2003-11-29make sure the $Id tags are converted to $PostgreSQL as well ...PostgreSQL Daemon
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-11-25Get rid of hashkeys field of Hash plan node, since it's redundant withTom Lane
2003-11-12Cross-data-type comparisons are now indexable by btrees, pursuant to myTom Lane
2003-11-09Add operator strategy and comparison-value datatype fields to ScanKey.Tom Lane
2003-08-17Fix ARRAY[] construct so that in multidimensional case, elements canTom Lane
2003-08-17Create a 'type cache' that keeps track of the data needed for any particularTom Lane
2003-08-11Rewriter and planner should use only resno, not resname, to identifyTom Lane
2003-08-08Another pgindent run with updated typedefs.Bruce Momjian
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-07-28A visit from the message-style police ...Tom Lane
2003-07-22Error message editing in backend/bootstrap, /lib, /nodes, /port.Tom Lane
2003-07-03Code review for UPDATE tab SET col = DEFAULT patch ... whack it aroundTom Lane
2003-07-01Aggregates can be polymorphic, using polymorphic implementation functions.Tom Lane
2003-06-29Restructure building of join relation targetlists so that a join planTom Lane
2003-06-29Support expressions of the form 'scalar op ANY (array)' andTom Lane
2003-06-27First batch of object rename commands.Peter Eisentraut
2003-06-25Back out array mega-patch.Bruce Momjian
2003-06-25UPDATE ... SET <col> = DEFAULTBruce Momjian
2003-06-25Includes:Bruce Momjian
2003-06-24Array mega-patch.Bruce Momjian
2003-06-15Adjust nestloop-with-inner-indexscan plan generation so that we catchTom Lane
2003-06-06Implement outer-level aggregates to conform to the SQL spec, withTom Lane
2003-05-28Fix some planner performance problems with large WHERE clauses, byTom Lane
2003-05-28Replace functional-index facility with expressional indexes. Any columnTom Lane
2003-05-06Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane
2003-05-02Portal and memory management infrastructure for extended query protocol.Tom Lane
2003-04-24Infrastructure for upgraded error reporting mechanism. elog.c isTom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane