]> granicus.if.org Git - postgresql/history - src/backend/parser
Document and enforce that the usable range of setseed() arguments is
[postgresql] / src / backend / parser /
2008-02-19 Peter EisentrautRefactor backend makefiles to remove lots of duplicate...
2008-02-15 Tom LaneAllow AS to be omitted when specifying an output column...
2008-02-15 Tom LaneRemove ancient restriction that LIMIT/OFFSET can't...
2008-02-07 Tom LaneSome variants of ALTER OWNER tried to make the "object...
2008-02-07 Tom LaneFix CREATE TABLE ... LIKE ... INCLUDING INDEXES to...
2008-01-11 Tom LaneThe original implementation of polymorphic aggregates...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-12-01 Tom LaneCode review for LIKE ... INCLUDING INDEXES patch. ...
2007-11-28 Tom LaneInstall a lookaside cache to speed up repeated lookups...
2007-11-26 Tom LaneFix select_common_type() so that it can select a domain...
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-11 Tom LaneEnsure that typmod decoration on a datatype name is...
2007-10-29 Tom LaneRemove the hack in the grammar that "optimized away...
2007-10-25 Tom LaneTweak new error messages to match the actual syntax...
2007-10-24 Tom LaneDisallow scrolling of FOR UPDATE/FOR SHARE cursors...
2007-09-27 Tom LaneFix Assert failure in ExpandColumnRefStar --- what...
2007-09-24 Andrew DunstanRemove "convert 'blah' using conversion_name" facility...
2007-09-12 Andrew DunstanPerform post-escaping encoding validity checks on SQL...
2007-09-06 Tom LaneMake eval_const_expressions() preserve typmod when...
2007-09-03 Tom LaneSupport SET FROM CURRENT in CREATE/ALTER FUNCTION,...
2007-09-03 Tom LaneImplement function-local GUC parameter settings, as...
2007-08-27 Tom LaneFix a couple of misbehaviors rooted in the fact that...
2007-08-22 Tom LaneRemove option to change parser of an existing text...
2007-08-21 Tom LaneAvoid using TEXT as a Bison symbol, since this provokes...
2007-08-21 Tom LaneTsearch2 functionality migrates to core. The bulk...
2007-08-12 Tom LaneIncrease the initial size of StringInfo buffers to...
2007-07-17 Neil ConwayImplement CREATE TABLE LIKE ... INCLUDING INDEXES....
2007-07-03 Neil ConwayAdd ALTER VIEW ... RENAME TO, and a RENAME TO clause...
2007-06-23 Tom LaneSeparate parse-analysis for utility commands out of...
2007-06-20 Tom LanetransformColumnDefinition failed to complain about
2007-06-19 Neil ConwayRemove duplicate #include.
2007-06-18 Tom LaneArrange for quote_identifier() and pg_dump to not quote...
2007-06-15 Tom LaneTweak the API for per-datatype typmodin functions so...
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-06 Tom LaneFix up text concatenation so that it accepts all the...
2007-06-05 Tom LaneDowngrade implicit casts to text to be assignment-only...
2007-05-11 Tom LaneSupport arrays of composite types, including the rowtyp...
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-16 Tom LaneExpose more cursor-related functionality in SPI: specif...
2007-04-12 Neil ConwayRESET SESSION, plus related new DDL commands. Patch...
2007-04-08 Bruce MomjianSupport syntax "CLUSTER table USING index", which is...
2007-04-02 Bruce MomjianAllow NOTIFY/LISTEN/UNLISTEN to only take relation...
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-26 Tom LaneAllow non-superuser database owners to create procedura...
2007-03-19 Jan WieckChanges pg_trigger and extend pg_rewrite in order to...
2007-03-17 Michael MeskesSimplified sortby rule
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-13 Tom LaneFirst phase of plan-invalidation project: create a...
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-11 Peter EisentrautAdd support for optionally escaping periods when conver...
2007-02-03 Peter EisentrautImplement XMLSERIALIZE for real. Analogously, make...
2007-02-01 Bruce MomjianWording cleanup for error messages. Also change can...
2007-01-31 Bruce MomjianRevert error message change for may/can/might --- needs...
2007-01-31 Bruce MomjianUpdate documentation on may/can/might:
2007-01-25 Peter EisentrautVarious fixes in the logic of XML functions:
2007-01-23 Tom LaneAdd CREATE/ALTER/DROP OPERATOR FAMILY commands, also...
2007-01-22 Tom LaneAdd COST and ROWS options to CREATE/ALTER FUNCTION...
2007-01-20 Tom LaneRefactor planner's pathkeys data structure to create...
2007-01-14 Peter EisentrautAdd support for xmlval IS DOCUMENT expression.
2007-01-12 Peter EisentrautFix compiler warning
2007-01-12 Bruce MomjianUpdate error messsage wording.
2007-01-12 Bruce MomjianUpdate ORDER BY UNION function/exprssion wording (again).
2007-01-12 Peter EisentrautAllow for arbitrary data types as content in XMLELEMENT...
2007-01-11 Bruce MomjianUpdate UNION/INTERSECT/EXCEPT ORDER BY error wording for
2007-01-11 Bruce MomjianImprove error wording of ORDER BY in UNION that uses...
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-08 Peter EisentrautPrevent duplicate attribute names in XMLELEMENT.
2007-01-06 Tom LaneFix filtered_base_yylex() to save and restore base_yylv...
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-28 Peter EisentrautFix some translator comments so that xgettext finds...
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-11 Tom LaneRepair incorrect check for coercion of unknown literal...
2006-10-11 Tom LaneCode review for LIKE INCLUDING CONSTRAINTS patch -...
2006-10-07 Peter EisentrautAdded missing entry (CASCADED) in keywords table.
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-09-28 Tom LaneFix IS NULL and IS NOT NULL tests on row-valued express...
2006-09-25 Tom LaneFix notice message from DROP FUNCTION IF EXISTS, and...
2006-09-22 Tom LaneFix bugs in plpgsql and ecpg caused by assuming that...
2006-09-18 Tom LaneFix problems with column name list of CREATE TABLE...
2006-09-18 Tom LaneFix CREATE TABLE ... AS VALUES ... to work rather than...
2006-09-03 Tom LaneCode review for UPDATE SET (columnlist) patch. Make...
2006-09-03 Bruce MomjianRevert FETCH/MOVE int64 patch. Was using incorrect...
2006-09-03 Bruce MomjianRemove unnecessary copyObject() call in update (values...
2006-09-02 Bruce MomjianSmall code cleanup for recent UPDATE SET (values) patch.
2006-09-02 Bruce MomjianAdd UPDATE tab SET ROW (col, ...) = (val, ...) for...
2006-09-02 Bruce MomjianChange FETCH/MOVE to use int8.
next