]> granicus.if.org Git - postgresql/history - src/include/nodes
8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list
[postgresql] / src / include / nodes /
2009-06-11 Bruce Momjian8.4 pgindent run, with new combined Linux/FreeBSD/MinGW...
2009-04-16 Tom LaneFix planner to restore its previous level of intelligen...
2009-04-08 Peter EisentrautXMLATTRIBUTES() should send the attribute values through
2009-04-05 Tom LaneChange EXPLAIN output so that subplans and initplans...
2009-04-04 Tom LaneRemove the recently added node types ReloptElem and...
2009-04-02 Tom LaneRefactor ExecProject and associated routines so that...
2009-03-26 Tom LaneIf we expect a hash join to be performed in multiple...
2009-03-24 Tom LaneImplement "fastupdate" support for GIN indexes, in...
2009-03-21 Tom LaneOptimize multi-batch hash joins when the outer relation...
2009-03-10 Tom LaneMake SubPlan nodes carry the result's typmod as well...
2009-03-05 Tom LaneTeach the planner to support index access methods that...
2009-02-25 Tom LaneGet rid of the rather fuzzily defined FlattenedSubLink...
2009-02-24 Peter EisentrautAdd the possibility to specify an explicit validator...
2009-02-11 Tom LaneChange ALTER TABLE SET WITHOUT OIDS to rewrite the...
2009-02-06 Tom LaneFix cost_mergejoin's failure to adjust for rescanning...
2009-02-02 Alvaro HerreraAllow reloption names to have qualifiers, initially...
2009-01-22 Tom LaneSupport column-level privileges, as required by SQL...
2009-01-16 Heikki LinnakangasAdd vacuum_freeze_table_age GUC option, to control...
2009-01-12 Tom LaneImplement prefetching via posix_fadvise() for bitmap...
2009-01-10 Tom LaneRevise the TIDBitmap API to support multiple concurrent...
2009-01-01 Bruce MomjianUpdate copyright for 2009.
2008-12-31 Tom LaneAdd some basic support for window frame clauses to...
2008-12-28 Tom LaneSupport window functions a la SQL:2008.
2008-12-19 Peter EisentrautSQL/MED catalog manipulation facilities
2008-12-18 Tom LaneCode review for function default parameters patch....
2008-12-06 Bruce MomjianAllow CREATE OR REPLACE VIEW to add columns to the...
2008-12-04 Peter EisentrautDefault values for function arguments
2008-12-04 Heikki LinnakangasUtilize the visibility map in autovacuum, too. There...
2008-12-01 Tom LaneFix an oversight in the code that makes transitive...
2008-11-24 Peter EisentrautCLUSTER VERBOSE and corresponding clusterdb --verbose...
2008-11-22 Tom LaneSwitch the planner over to treating qualifications...
2008-11-16 Tom LaneModify UPDATE/DELETE WHERE CURRENT OF to use the FOR...
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 Tom LaneAllow SQL-language functions to return the output of...
2008-10-31 Heikki LinnakangasAdd support for user-defined I/O conversion casts.
2008-10-29 Tom LaneBe more tense about not creating tuplestores with rando...
2008-10-28 Tom LaneExtend ExecMakeFunctionResult() to support set-returnin...
2008-10-23 Tom LaneRemove useless ps_OuterTupleSlot field from PlanState...
2008-10-22 Tom LaneDept of better ideas: refrain from creating the planner...
2008-10-21 Tom LaneAdd a concept of "placeholder" variables to the planner...
2008-10-17 Tom LaneImprove comments about RelOptInfo.reltargetlist.
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-10-01 Tom LaneImprove tuplestore.c to support multiple concurrent...
2008-09-09 Tom LaneImprove the plan cache invalidation mechanism to make...
2008-09-08 Tom LaneCreate a separate grantable privilege for TRUNCATE...
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-29 Tom LaneIn GCC-based builds, use a better newNode() macro that...
2008-08-28 Tom LaneExtend the parser location infrastructure to include...
2008-08-25 Tom LaneMove exprType(), exprTypmod(), expression_tree_walker...
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-05 Tom LaneImprove SELECT DISTINCT to consider hash aggregation...
2008-08-02 Tom LaneRearrange the querytree representation of ORDER BY...
2008-07-31 Tom LaneFix parser so that we don't modify the user-written...
2008-07-26 Tom LaneAs noted by Andrew Gierth, there's really no need any...
2008-07-18 Tom LaneImplement SQL-spec RETURNS TABLE syntax for functions.
2008-07-16 Tom LaneSupport "variadic" functions, which can accept a variab...
2008-06-19 Alvaro HerreraImprove our #include situation by moving pointer types...
2008-05-16 Tom LaneAdd a RESTART (without parameter) option to ALTER SEQUE...
2008-05-09 Tom LaneChange the rules for inherited CHECK constraints to...
2008-04-29 Tom LaneSome minor further cleanup around A_Const. Don't attac...
2008-04-29 Alvaro HerreraRemove typename from A_Const.
2008-04-21 Tom LaneFix convert_IN_to_join to properly handle the case...
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-04-10 Tom LaneReplace "amgetmulti" AM functions with "amgetbitmap...
2008-03-24 Tom LaneWhen a relation has been proven empty by constraint...
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-03-17 Tom LaneFix TransactionIdIsCurrentTransactionId() to use binary...
2008-02-07 Tom LaneFix CREATE TABLE ... LIKE ... INCLUDING INDEXES to...
2008-01-11 Tom LaneFix a conceptual error in my patch of 2007-10-26 that...
2008-01-09 Tom LaneFix some planner issues found while investigating Kevin...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-12-08 Tom LaneFix mergejoin cost estimation so that we consider the...
2007-12-01 Tom LaneCode review for LIKE ... INCLUDING INDEXES patch. ...
2007-11-30 Tom LaneAvoid incrementing the CommandCounter when CommandCount...
2007-11-22 Tom LaneActually ... it's pretty silly that parse_oper.c doesn...
2007-11-15 Bruce MomjianRe-run pgindent with updated list of typedefs. (Update...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-11-08 Tom LaneFix EquivalenceClass code to handle volatile sort expre...
2007-10-24 Tom LaneDisallow scrolling of FOR UPDATE/FOR SHARE cursors...
2007-10-24 Tom LaneFix UPDATE/DELETE WHERE CURRENT OF to support repeated...
2007-10-11 Tom LaneFix the plan-invalidation mechanism to treat regclass...
2007-09-20 Tom LaneHOT updates. When we update a tuple without changing...
2007-09-06 Tom LaneMake eval_const_expressions() preserve typmod when...
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-08-26 Tom LaneMake ARRAY(SELECT ...) return an empty array, rather...
2007-08-22 Tom LaneRemove option to change parser of an existing text...
2007-08-21 Tom LaneTsearch2 functionality migrates to core. The bulk...
2007-08-15 Tom LaneArrange to cache a ResultRelInfo in the executor's...
2007-08-07 Neil ConwayAdjust the output of MemoryContextStats() so that the...
next