OSDN Git Service

Default values for function arguments
[pg-rex/syncrep.git] / src / backend / nodes / copyfuncs.c
2008-12-04 Peter EisentrautDefault values for function arguments
2008-12-04 Heikki LinnakangasUtilize the visibility map in autovacuum, too. There...
2008-11-24 Peter EisentrautCLUSTER VERBOSE and corresponding clusterdb --verbose...
2008-11-15 Tom LaneMake SELECT FOR UPDATE/SHARE work on inheritance trees...
2008-11-11 Tom LaneGet rid of adjust_appendrel_attr_needed(), which has...
2008-10-31 Heikki LinnakangasAdd support for user-defined I/O conversion casts.
2008-10-21 Tom LaneAdd a concept of "placeholder" variables to the planner...
2008-10-07 Tom LaneExtend CTE patch to support recursive UNION (ie, withou...
2008-10-06 Tom LaneWhen expanding a whole-row Var into a RowExpr during...
2008-10-04 Tom LaneImplement SQL-standard WITH clauses, including WITH...
2008-09-09 Tom LaneImprove the plan cache invalidation mechanism to make...
2008-09-01 Tom LaneAdd a bunch of new error location reports to parse...
2008-08-30 Tom LaneFix the raw-parsetree representation of star (as in...
2008-08-28 Tom LaneExtend the parser location infrastructure to include...
2008-08-22 Tom LaneArrange to convert EXISTS subqueries that are equivalen...
2008-08-14 Tom LaneImplement SEMI and ANTI joins in the planner and execut...
2008-08-07 Tom LaneImprove INTERSECT/EXCEPT hashing by realizing that...
2008-08-07 Tom LaneSupport hashing for duplicate-elimination in INTERSECT...
2008-08-07 Tom LaneTeach the system how to use hashing for UNION. (INTERS...
2008-08-02 Tom LaneRearrange the querytree representation of ORDER BY...
2008-07-16 Tom LaneSupport "variadic" functions, which can accept a variab...
2008-05-16 Tom LaneAdd a RESTART (without parameter) option to ALTER SEQUE...
2008-04-29 Alvaro HerreraRemove typename from A_Const.
2008-04-14 Tom LanePush index operator lossiness determination down to...
2008-04-13 Tom LaneSince createplan.c no longer cares whether index operat...
2008-03-21 Tom LaneRemove TypeName struct's timezone flag, which has been...
2008-03-20 Tom LaneArrange for an explicit cast applied to an ARRAY[]...
2008-02-07 Tom LaneAdd missing copyfuncs/equalfuncs support for AlterTSDic...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-12-01 Tom LaneCode review for LIKE ... INCLUDING INDEXES patch. ...
2007-11-15 Bruce MomjianRe-run pgindent with updated list of typedefs. (Update...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-10-11 Tom LaneFix the plan-invalidation mechanism to treat regclass...
2007-09-03 Tom LaneSupport SET FROM CURRENT in CREATE/ALTER FUNCTION,...
2007-08-31 Tom LaneRewrite make_outerjoininfo's construction of min_leftha...
2007-07-17 Neil ConwayImplement CREATE TABLE LIKE ... INCLUDING INDEXES....
2007-06-11 Tom LaneImprove UPDATE/DELETE WHERE CURRENT OF so that they...
2007-06-11 Tom LaneSupport UPDATE/DELETE WHERE CURRENT OF cursor_name...
2007-06-05 Tom LaneDowngrade implicit casts to text to be assignment-only...
2007-05-22 Tom LaneRepair planner bug introduced in 8.2 by ability to...
2007-04-27 Tom LaneModify processing of DECLARE CURSOR and EXPLAIN so...
2007-04-26 Neil ConwayRename the newly-added commands for discarding session...
2007-04-02 Tom LaneSupport enum data types. Along the way, use macros...
2007-03-27 Tom LaneFix array coercion expressions to ensure that the corre...
2007-03-17 Tom LaneFix up the remaining places where the expression node...
2007-03-13 Tom LaneFirst phase of plan-invalidation project: create a...
2007-02-27 Tom LaneGet rid of the separate EState for subplans, and just...
2007-02-22 Tom LaneTurn the rangetable used by the executor into a flat...
2007-02-20 Tom LaneRemove the Query structure from the executor's API...
2007-02-19 Tom LanePut function expressions and values lists into Function...
2007-02-03 Peter EisentrautImplement XMLSERIALIZE for real. Analogously, make...
2007-01-23 Tom LaneAdd CREATE/ALTER/DROP OPERATOR FAMILY commands, also...
2007-01-22 Tom LanePut back planner's ability to cache the results of...
2007-01-20 Tom LaneRefactor planner's pathkeys data structure to create...
2007-01-10 Tom LaneChange the planner-to-executor API so that the planner...
2007-01-09 Tom LaneSupport ORDER BY ... NULLS FIRST/LAST, and add ASC...
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2006-12-30 Tom LaneSupport type modifiers for user-defined types, and...
2006-12-24 Tom LaneCode review for XML patch. Instill a bit of sanity...
2006-12-23 Tom LaneRestructure operator classes to allow improved handling...
2006-12-21 Peter EisentrautInitial SQL/XML support: xml data type and initial...
2006-12-10 Tom LaneAdd a paramtypmod field to Param nodes. This is dead...
2006-11-05 Tom LaneFix recently-understood problems with handling of XID...
2006-10-13 Tom LaneCode and docs review for ALTER TABLE INHERIT/NO INHERIT...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-08-30 Tom LaneExtend COPY to support COPY (SELECT ...) TO ...
2006-08-25 Tom LaneAdd the ability to create indexes 'concurrently', that...
2006-08-21 Tom LaneFix all known problems with pg_dump's handling of seria...
2006-08-12 Tom LaneAdd INSERT/UPDATE/DELETE RETURNING, with basic docs...
2006-08-10 Tom LaneFix UNION/INTERSECT/EXCEPT so that when two inputs...
2006-08-02 Joe ConwayAdd support for multi-row VALUES clauses as part of...
2006-07-27 Tom LaneAggregate functions now support multiple input argument...
2006-07-14 Bruce MomjianRemove 576 references of include files that were not...
2006-07-03 Tom LaneCode review for FILLFACTOR patch. Change WITH grammar...
2006-07-02 Neil ConwayDo a pass of code review for the ALTER TABLE ADD INHERI...
2006-07-02 Bruce MomjianAdd FILLFACTOR to CREATE INDEX.
2006-07-02 Bruce MomjianALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT...
2006-07-01 Tom LaneRevise the planner's handling of "pseudoconstant" WHERE...
2006-06-27 Bruce MomjianAdd INCLUDING CONSTRAINTS to CREATE TABLE LIKE.
2006-06-16 Andrew DunstanDROP ... IF EXISTS for the following cases:
2006-04-30 Tom LaneImprove the representation of FOR UPDATE/FOR SHARE...
2006-04-22 Tom LaneSimplify ParamListInfo data structure to support only...
2006-04-15 Tom LaneSupport the syntax
2006-03-23 Tom LaneAdd error location info to ResTarget parse nodes. ...
2006-03-16 Tom LaneClean up representation of function RTEs for functions...
2006-03-14 Tom LaneImprove parser so that we can show an error cursor...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-03-03 Tom LaneAdd CASCADE option to TRUNCATE. Joachim Wieland
2006-02-19 Neil ConwayAdd TABLESPACE and ON COMMIT clauses to CREATE TABLE...
2006-02-04 Andrew DunstanDROP IF EXISTS for ROLE/USER/GROUP
2006-01-31 Tom LaneRestructure planner's handling of inheritance. Rather...
2005-12-28 Tom LaneImplement SQL-compliant treatment of row comparisons...
2005-12-20 Tom LaneTeach planner how to rearrange join order for some...
2005-11-26 Tom LaneTeach tid-scan code to make use of "ctid = ANY (array...
2005-11-22 Bruce MomjianRe-run pgindent, fixing a problem where comment lines...
2005-11-22 Andrew Dunstan DROP DATABASE IF EXISTS variant
2005-11-21 Alvaro HerreraImplement DROP OWNED and REASSIGN OWNED. These new...
2005-11-20 Tom LaneClean up after DROP IF EXISTS patch.
2005-11-14 Tom LaneRestore the former RestrictInfo field valid_everywhere...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
next