]> granicus.if.org Git - postgresql/history - src/backend/parser
Pgindent run for 8.0.
[postgresql] / src / backend / parser /
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-08-24 Tom LaneAllow second and subsequent names in a qualified (dotte...
2004-08-22 Tom LaneCode review for ALTER INDEX patch.
2004-08-20 Bruce MomjianAdd ALTER INDEX, particularly for moving tablespaces.
2004-08-19 Tom LaneRepair some issues with column aliases and RowExpr...
2004-08-17 Tom LaneStandardize on the assumption that the arguments of...
2004-08-12 Tom LaneAllow commas in BEGIN, START TRANSACTION, and SET TRANS...
2004-08-12 Tom LaneAllow optional SAVEPOINT keyword in RELEASE and ROLLBAC...
2004-08-02 Tom LaneSupport USING INDEX TABLESPACE clause for PRIMARY KEY...
2004-07-27 Tom LaneReplace nested-BEGIN syntax for subtransactions with...
2004-07-12 Tom LaneRemove TABLESPACE option of CREATE SEQUENCE; sequences...
2004-07-11 Tom LaneALTER TABLE SET TABLESPACE. Gavin Sherry, some rework...
2004-06-28 Tom LaneRemove some no-longer-needed #includes.
2004-06-28 Tom LaneFix some bogus code in ConstBit production --- it manag...
2004-06-25 Tom LaneSupport renaming of tablespaces, and changing the owners of
2004-06-19 Tom LaneFix oversight in recent rowtype-handling improvements...
2004-06-18 Tom LaneTablespaces. Alternate database locations are dead...
2004-06-16 Tom LaneRepresent type-specific length coercion functions as...
2004-06-10 Tom LaneClean up generation of default names for constraints...
2004-06-09 Tom LaneSupport assignment to subfields of composite columns...
2004-06-06 Tom LaneInfrastructure for I/O of composite types: arrange...
2004-06-04 Tom LaneRemove some long-obsolete code that was causing a stran...
2004-06-03 Tom LaneRemove typeTypeFlag(), which was not only unused but...
2004-06-02 Bruce MomjianOK, here's the final version of ALTER TABLE ... SET...
2004-06-01 Tom LaneSome more de-FastList-ification.
2004-05-30 Neil ConwayUse the new List API function names throughout the...
2004-05-26 Bruce MomjianThe patch adresses the TODO list item "Allow external...
2004-05-26 Bruce MomjianThis patch implement the TODO [ALTER DATABASE foo OWNER...
2004-05-26 Neil ConwayReimplement the linked list data structure used through...
2004-05-23 Tom LaneStill another place to make the world safe for zero...
2004-05-10 Tom LanePromote row expressions to full-fledged citizens of...
2004-05-05 Tom LaneALTER TABLE rewrite. New cool stuff:
2004-04-21 Bruce MomjianChange COPY CSV keyword to be:
2004-04-19 Bruce MomjianComplete TODO item:
2004-04-18 Tom LaneTweak findTargetlistEntry so that bare names occurring...
2004-04-05 Bruce MomjianAllow LIKE/ILIKE to appear in more places in a query.
2004-04-02 Tom LaneFix poor choice of error message in corner cases.
2004-04-02 Tom LaneClean up some code that had gotten a bit ugly through...
2004-04-02 Tom LaneGet rid of crocky use of RangeVar nodes in parser to...
2004-04-01 Tom LaneReplace TupleTableSlot convention for whole-row variabl...
2004-03-24 Tom LaneReplace max_expr_depth parameter with a max_stack_depth...
2004-03-21 Tom LaneRevise syntax-error reporting behavior to give pleasant...
2004-03-17 Tom LaneReimplement CASE val WHEN compval1 THEN ... WHEN compva...
2004-03-15 Tom LaneRemove grotty special-case code in coerce_to_target_typ...
2004-03-11 Tatsuo IshiiAdd NOWAIT option to LOCK command
2004-03-09 Bruce MomjianAdd ALSO keyword to CREATE RULE.
2004-02-24 Tom LaneImplement dollar-quoting in the backend lexer and psql...
2004-02-21 Tom LaneImplement a solution to the 'Turkish locale downcases...
2004-02-19 Tom LaneCosmetic changes (mostly whitespace) to make it easier...
2004-02-13 Tom LaneTry to make 'cross-database references are not implemen...
2004-01-28 Tom LaneFix oversight in check_ungrouped_columns optimization...
2004-01-23 Neil ConwayFix a minor bug introduced by the recent CREATE TABLE...
2004-01-14 Tom LaneFix permission-checking bug reported by Tim Burgess...
2004-01-11 Neil ConwayAdd CREATE TRIGGER, CREATE INDEX, and CREATE SEQUENCE...
2004-01-10 Neil ConwayImplement "WITH / WITHOID OIDS" clause for CREATE TABLE...
2004-01-10 Bruce MomjianAllow BEGIN WORK to specify transaction isolation level...
2004-01-07 Neil ConwayMore janitorial work: remove the explicit casting of...
2004-01-06 Tom LaneApply the core parts of Dennis Bjorklund's patch to...
2004-01-05 Neil ConwayTrivial refactoring: move analysis of ViewStmt into...
2003-12-17 Tom LaneReorder tests in parse_coerce so that ANY/ANYELEMENT...
2003-12-01 Bruce MomjianThis patch adds a new GUC var, "default_with_oids"...
2003-11-29 PostgreSQL Daemon$Header: -> $PostgreSQL Changes ...
2003-11-24 Tom LaneOverdue code review for ALTER SEQUENCE patch. Don...
2003-11-21 Tom LaneCOMMENT ON casts, conversions, languages, operator...
2003-11-12 Tom LaneCross-data-type comparisons are now indexable by btrees...
2003-11-09 Tom LaneAdd operator strategy and comparison-value datatype...
2003-11-06 Peter EisentrautImplement isolation levels read uncommitted and repeata...
2003-11-05 Tom LaneFix for this problem:
2003-10-20 Tom LaneImprove error reporting in parseTypeString(), motivated...
2003-10-09 Peter EisentrautMake sure that -- comments extend to the end of the...
2003-10-06 Tom LaneFix binary_oper_exact() so that the heuristic 'an unkno...
2003-10-02 Peter EisentrautChange some notices to warnings and vice versa accordin...
2003-10-02 Peter EisentrautRemove NOTICE about foreign key creating implicit trigg...
2003-09-29 Peter EisentrautMore message editing, some suggested by Alvaro Herrera
2003-09-26 Peter EisentrautVarious message fixes, among those fixes for the previo...
2003-09-25 Tom LaneFix grammatical error introduced into error message.
2003-09-25 Peter EisentrautMessage editing: remove gratuitous variations in messag...
2003-09-23 Tom LaneTweak generic_type_consistency routines to avoid loss...
2003-09-15 Tom LaneImprove a couple of error messages per suggestions...
2003-09-09 Peter EisentrautSome "feature not supported" errors are better syntax...
2003-09-06 Peter EisentrautMake all valid uses of the COLLATE clause yield the...
2003-08-22 Tom LaneTweak grammar to use FastAppend rather than lappend...
2003-08-17 Tom LaneFix ARRAY[] construct so that in multidimensional case...
2003-08-17 Tom LaneCreate a 'type cache' that keeps track of the data...
2003-08-11 Tom LaneRewriter and planner should use only resno, not resname...
2003-08-11 Tom LaneCode cleanup inspired by recent resname bug report...
2003-08-08 Bruce MomjianAnother pgindent run with updated typedefs.
2003-08-07 Tom Lanecreate_unique_plan() should not discard existing output...
2003-08-04 Bruce MomjianUpdate copyrights to 2003.
2003-08-04 Bruce Momjianpgindent run.
2003-08-01 Tom LaneAdjust 'permission denied' messages to be more useful...
2003-07-28 Tom LaneA visit from the message-style police ...
2003-07-20 Tom LaneAnother round of error message editing, covering backen...
2003-07-19 Tom LaneAnother round of error message editing, covering backen...
2003-07-18 Tom LaneFirst bits of work on error message editing.
2003-07-16 Tom LaneAdd defenses against trying to attach qual conditions...
2003-07-04 Tom LaneSome early work on error message editing. Operator...
2003-07-03 Tom LaneDo honest transformation and preprocessing of LIMIT...
2003-07-03 Tom LaneCode review for UPDATE tab SET col = DEFAULT patch...
next