]> granicus.if.org Git - postgresql/history - src/backend/utils/adt/ruleutils.c
Allow the second argument of pg_get_expr() to be just zero when deparsing
[postgresql] / src / backend / utils / adt / ruleutils.c
2009-05-26 Tom LaneAllow the second argument of pg_get_expr() to be just...
2009-04-05 Tom LaneChange EXPLAIN output so that subplans and initplans...
2009-02-25 Tom LaneFix an old problem in decompilation of CASE constructs...
2009-01-07 Tom LaneFix executor/spi.h to follow our usual conventions...
2009-01-01 Bruce MomjianUpdate copyright for 2009.
2008-12-31 Tom LaneAdd a WINDOW attribute to CREATE FUNCTION, and teach...
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 Tom LaneWhen we added the ability to have zero-element ARRAY...
2008-12-18 Tom LaneCode review for function default parameters patch....
2008-12-04 Peter EisentrautDefault values for function arguments
2008-10-06 Tom LaneFix up ruleutils.c for CTE features. The main problem...
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-06 Tom LaneAdjust psql's new \ef command to present an empty CREAT...
2008-09-06 Tom LaneImplement a psql command "\ef" to edit the definition...
2008-09-01 Tom LaneAdd a bunch of new error location reports to parse...
2008-08-25 Tom LaneMove exprType(), exprTypmod(), expression_tree_walker...
2008-08-22 Tom LaneArrange to convert EXISTS subqueries that are equivalen...
2008-08-02 Tom LaneRearrange the querytree representation of ORDER BY...
2008-07-18 Tom LaneImplement SQL-spec RETURNS TABLE syntax for functions.
2008-07-16 Tom LaneAdd a "provariadic" column to pg_proc to eliminate...
2008-07-16 Tom LaneSupport "variadic" functions, which can accept a variab...
2008-06-06 Tom LaneFix pg_get_ruledef() so that negative numeric constants...
2008-05-12 Alvaro HerreraRestructure some header files a bit, in particular...
2008-05-03 Tom LaneThe 8.2 patch that added support for an alias on the...
2008-03-28 Tom LaneSupport statement-level ON TRUNCATE triggers. Simon...
2008-03-26 Alvaro HerreraMove the HTSU_Result enum definition into snapshot...
2008-03-25 Tom LaneSimplify and standardize conversions between TEXT datum...
2008-01-06 Tom LaneA long time ago, Peter pointed out that ruleutils.c...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-12-20 Tom LaneWhen given a nonzero column number, pg_get_indexdef...
2007-12-01 Tom LaneCode review for LIKE ... INCLUDING INDEXES patch. ...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-10-13 Tom LaneFix ALTER COLUMN TYPE to preserve the tablespace and...
2007-07-17 Neil ConwayImplement CREATE TABLE LIKE ... INCLUDING INDEXES....
2007-06-18 Tom LaneArrange for quote_identifier() and pg_dump to not quote...
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-24 Tom LaneRemove ruleutils.c's use of varnoold/varoattno as a...
2007-03-27 Tom LaneFix array coercion expressions to ensure that the corre...
2007-03-18 Neil ConwayCode cleanup: mark some variables with the "const"...
2007-03-17 Tom LaneOoops, got only one of the two ArrayExpr variants corre...
2007-03-17 Tom LaneFix up the remaining places where the expression node...
2007-03-15 Tom LaneMake use of plancache module for SPI plans. In particu...
2007-02-27 Tom LaneReplace direct assignments to VARATT_SIZEP(x) with...
2007-02-23 Tom LaneNow that plans have flat rangetable lists, it's a lot...
2007-02-22 Tom LaneChange Agg and Group nodes so that Vars contained in...
2007-02-14 Tom LaneFix up foreign-key mechanism so that there is a sound...
2007-02-03 Peter EisentrautImplement XMLSERIALIZE for real. Analogously, make...
2007-01-30 Bruce MomjianUpdate documentation for pg_get_serial_sequence() function.
2007-01-25 Bruce MomjianProperly detoast access to bytea field pg_trigger.tgarg...
2007-01-20 Tom LaneSimplify pg_am representation of ordering-capable acces...
2007-01-20 Neil ConwayAdd missing copyright blurb, make ruleutils.c use the...
2007-01-14 Peter EisentrautFix reverse compilation of IS DOCUMENT expression.
2007-01-14 Peter EisentrautAdd support for xmlval IS DOCUMENT expression.
2007-01-09 Tom LaneSupport ORDER BY ... NULLS FIRST/LAST, and add ASC...
2006-12-29 Tom LaneFix multiple breakages in last XML patch.
2006-12-29 Peter EisentrautDe-escape XML names when reverse-compiling XML expressions.
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-11-10 Tom LaneFix pg_get_serial_sequence(), which could incorrectly...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-10-01 Tom LaneFix overly enthusiastic Assert introduced in 8.1: it...
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-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-04 Neil ConwayFix typos in comments.
2006-07-03 Tom LaneCode review for FILLFACTOR patch. Change WITH grammar...
2006-07-02 Bruce MomjianAdd FILLFACTOR to CREATE INDEX.
2006-06-16 Tom LaneFix problems with cached tuple descriptors disappearing...
2006-05-28 Tom LaneFix up pg_dump to do string escaping fully correctly...
2006-05-26 Bruce MomjianUse E'' strings internally only when standard_conformin...
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-08 Tom LaneFix EXPLAIN so that it can drill down through multiple...
2006-04-04 Tom LaneModify all callers of datatype input and receive functi...
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-11 Bruce MomjianRemove copyright notices from Jan (per author approval...
2006-03-07 Tom LaneRemove the stub support we had for UNION JOIN; per...
2006-01-26 Tom LaneFix display of whole-row Var appearing at the top level...
2005-12-30 Tom LaneRepair EXPLAIN failure when trying to display a plan...
2005-12-28 Tom LaneImplement SQL-compliant treatment of row comparisons...
2005-12-10 Tom LaneTeach deparsing of CASE expressions to cope with the...
2005-11-22 Bruce MomjianRe-run pgindent, fixing a problem where comment lines...
2005-11-17 Tom LaneMake SQL arrays support null elements. This commit...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-10-06 Tom LaneWhen a function not returning RECORD has a single OUT...
2005-08-01 Tom LaneAdd NOWAIT option to SELECT FOR UPDATE/SHARE.
2005-07-15 Tom LaneCheck for out-of-range varoattno in deparse_context_for...
2005-07-02 Bruce MomjianAdd E'' to internally created SQL strings that contain...
2005-06-28 Tom LaneReplace pg_shadow and pg_group by new role-capable...
2005-06-26 Tom LaneAdd Oracle-compatible GREATEST and LEAST functions...
2005-06-05 Tom LaneReplace the parser's namespace tree (which formerly...
2005-06-03 Tom LaneRevise handling of dropped columns in JOIN alias lists...
next