summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane2007-10-111-1/+2
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-031-18/+4
* Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane2007-08-311-1/+3
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-171-1/+2
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-111-1/+2
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-111-1/+18
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-051-1/+19
* Repair planner bug introduced in 8.2 by ability to rearrange outer joins:Tom Lane2007-05-221-1/+2
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-4/+5
* Rename the newly-added commands for discarding session state.Neil Conway2007-04-261-1/+14
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-1/+15
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-271-1/+22
* Fix up the remaining places where the expression node structure would loseTom Lane2007-03-171-2/+3
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-131-3/+1
* Get rid of the separate EState for subplans, and just let them share theTom Lane2007-02-271-1/+2
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-3/+4
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-14/+45
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-191-1/+14
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-031-1/+19
* Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane2007-01-231-1/+48
* Put back planner's ability to cache the results of mergejoinscansel(),Tom Lane2007-01-221-1/+5
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-201-23/+19
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-101-3/+13
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-091-2/+9
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-301-2/+3
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-241-20/+21
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-231-2/+6
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-211-1/+20
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-101-1/+2
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-051-2/+2
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-131-2/+1
* pgindent run for 8.2.Bruce Momjian2006-10-041-4/+4
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-301-1/+2
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-251-1/+2
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-211-2/+1
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-2/+7
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-101-1/+2
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-2/+22
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-271-2/+2
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-2/+1
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-3/+1
* Do a pass of code review for the ALTER TABLE ADD INHERITS patch. KeepNeil Conway2006-07-021-2/+2
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-4/+7
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-021-1/+2
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-011-1/+2
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-271-2/+2
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-161-1/+7
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-301-5/+18
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-221-2/+1