summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2007-02-22Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane
2007-02-11Add support for optionally escaping periods when converting SQL identifiersPeter Eisentraut
2007-02-03Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-01-31Revert error message change for may/can/might --- needs discussion.Bruce Momjian
2007-01-31Update documentation on may/can/might:Bruce Momjian
2007-01-25Various fixes in the logic of XML functions:Peter Eisentraut
2007-01-23Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane
2007-01-22Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_procTom Lane
2007-01-20Refactor planner's pathkeys data structure to create a separate, explicitTom Lane
2007-01-14Add support for xmlval IS DOCUMENT expression.Peter Eisentraut
2007-01-12Fix compiler warningPeter Eisentraut
2007-01-12Update error messsage wording.Bruce Momjian
2007-01-12Update ORDER BY UNION function/exprssion wording (again).Bruce Momjian
2007-01-12Allow for arbitrary data types as content in XMLELEMENT. The originalPeter Eisentraut
2007-01-11Update UNION/INTERSECT/EXCEPT ORDER BY error wording forBruce Momjian
2007-01-11Improve error wording of ORDER BY in UNION that uses new expressions inBruce Momjian
2007-01-10Change the planner-to-executor API so that the planner tells the executorTom Lane
2007-01-09Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane
2007-01-08Prevent duplicate attribute names in XMLELEMENT.Peter Eisentraut
2007-01-06Fix filtered_base_yylex() to save and restore base_yylval and base_yyllocTom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-30Support type modifiers for user-defined types, and pull most knowledgeTom Lane
2006-12-24Code review for XML patch. Instill a bit of sanity in the location ofTom Lane
2006-12-23Restructure operator classes to allow improved handling of cross-data-typeTom Lane
2006-12-21Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut
2006-12-10Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane
2006-11-28Fix some translator comments so that xgettext finds them and pgindent doesPeter Eisentraut
2006-11-05Fix recently-understood problems with handling of XID freezing, particularlyTom Lane
2006-10-13Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane
2006-10-11Repair incorrect check for coercion of unknown literal to ANYARRAY, a bugTom Lane
2006-10-11Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane
2006-10-07Added missing entry (CASCADED) in keywords table.Peter Eisentraut
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-09-28Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane
2006-09-25Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane
2006-09-22Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane
2006-09-18Fix problems with column name list of CREATE TABLE AS being applied toTom Lane
2006-09-18Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing;Tom Lane
2006-09-03Code review for UPDATE SET (columnlist) patch. Make it handle as muchTom Lane
2006-09-03Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian
2006-09-03Remove unnecessary copyObject() call in update (values) code.Bruce Momjian
2006-09-02Small code cleanup for recent UPDATE SET (values) patch.Bruce Momjian
2006-09-02Add UPDATE tab SET ROW (col, ...) = (val, ...) for updatingBruce Momjian
2006-09-02Change FETCH/MOVE to use int8.Bruce Momjian
2006-08-30Extend COPY to support COPY (SELECT ...) TO ...Tom Lane
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-08-21Fix all known problems with pg_dump's handling of serial sequencesTom Lane
2006-08-14Cause '*' and 'foo.*' notations to mark the referenced RTE(s) asTom Lane