]> granicus.if.org Git - postgresql/history - src/backend/parser/keywords.c
Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPE
[postgresql] / src / backend / parser / keywords.c
2008-10-21 Peter EisentrautAllow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN...
2008-10-04 Tom LaneImplement SQL-standard WITH clauses, including WITH...
2008-09-23 Heikki LinnakangasMake LC_COLLATE and LC_CTYPE database-level settings...
2008-08-29 Peter EisentrautRemove all traces that suggest that a non-Bison yacc...
2008-07-16 Tom LaneSupport "variadic" functions, which can accept a variab...
2008-07-03 Tom LaneAdd a function pg_get_keywords() to let clients find...
2008-05-21 Michael MeskesLink in keywords file instead of copying it.
2008-05-16 Tom LaneAdd a RESTART (without parameter) option to ALTER SEQUE...
2008-03-27 Tom LaneReduce the need for frontend programs to include "postg...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-09-24 Andrew DunstanRemove "convert 'blah' using conversion_name" facility...
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-06-18 Tom LaneArrange for quote_identifier() and pg_dump to not quote...
2007-06-11 Tom LaneSupport UPDATE/DELETE WHERE CURRENT OF cursor_name...
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-19 Jan WieckChanges pg_trigger and extend pg_rewrite in order to...
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-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-24 Tom LaneCode review for XML patch. Instill a bit of sanity...
2006-12-21 Peter EisentrautInitial SQL/XML support: xml data type and initial...
2006-10-07 Peter EisentrautAdded missing entry (CASCADED) in keywords table.
2006-08-25 Tom LaneAdd the ability to create indexes 'concurrently', that...
2006-08-12 Tom LaneAdd INSERT/UPDATE/DELETE RETURNING, with basic docs...
2006-07-31 Tom LaneChange the bootstrap sequence so that toast tables...
2006-07-15 Tom LaneFix some missing inclusions identified with new pgcheck...
2006-06-27 Bruce MomjianAdd INCLUDING CONSTRAINTS to CREATE TABLE LIKE.
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2005-12-27 Bruce MomjianProtect ADD and HEADER symbols from conflicting with...
2005-11-22 Bruce MomjianRe-run pgindent, fixing a problem where comment lines...
2005-11-21 Alvaro HerreraImplement DROP OWNED and REASSIGN OWNED. These new...
2005-11-19 Andrew DunstanDROP objecttype IF EXISTS for the following objects:
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-08-23 Tom LaneAdd ALTER TABLE ENABLE/DISABLE TRIGGER commands. Chang...
2005-07-31 Tom LaneAdd per-user and per-database connection limit options.
2005-07-26 Tom LaneAdd a role property 'rolinherit' which, when false...
2005-06-29 Tom LaneMore cleanup on roles patch. Allow admin option to...
2005-06-28 Tom LaneBring syntax of role-related commands into SQL complian...
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-22 Tom LaneMake REINDEX DATABASE do what one would expect, namely...
2005-06-17 Tom LaneTwo-phase commit. Original patch by Heikki Linnakangas...
2005-06-14 Bruce MomjianAdd BETWEEN SYMMETRIC.
2005-05-07 Bruce MomjianAdd COPY WITH CVS HEADER to allow a heading line as...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-07-27 Tom LaneReplace nested-BEGIN syntax for subtransactions with...
2004-07-12 Tom LaneRemove TABLESPACE option of CREATE SEQUENCE; sequences...
2004-06-18 Tom LaneTablespaces. Alternate database locations are dead...
2004-04-21 Bruce MomjianChange COPY CSV keyword to be:
2004-04-19 Bruce MomjianComplete TODO item:
2004-03-11 Tatsuo IshiiAdd NOWAIT option to LOCK command
2004-03-09 Bruce MomjianAdd ALSO keyword to CREATE RULE.
2004-02-21 Tom LaneImplement a solution to the 'Turkish locale downcases...
2003-11-29 PostgreSQL Daemon$Header: -> $PostgreSQL Changes ...
2003-11-21 Tom LaneCOMMENT ON casts, conversions, languages, operator...
2003-11-06 Peter EisentrautImplement isolation levels read uncommitted and repeata...
2003-08-04 Bruce MomjianUpdate copyrights to 2003.
2003-06-25 Bruce MomjianIncludes:
2003-05-15 Bruce MomjianAllow Win32 to compile under MinGW. Major changes...
2003-04-08 Tom LaneFirst phase of work on array improvements. ARRAY[x...
2003-03-27 Bruce MomjianThis patch implements holdable cursors, following the...
2003-03-20 Bruce MomjianTodo items:
2003-03-11 Tom LaneImplement SQL92-compatible FIRST, LAST, ABSOLUTE n...
2003-02-10 Tom LaneGet rid of last few vestiges of parsetree dependency...
2003-02-03 Bruce MomjianChange MOVE LAST to MOVE ALL.
2002-12-12 Tom LanePreliminary code review for domain CHECK constraints...
2002-11-15 Bruce MomjianAdd DOMAIN check constraints.
2002-11-13 Bruce MomjianMake MOVE/FETCH 0 actually move/fetch 0. Add MOVE...
2002-11-11 Tom LaneCode review for ON COMMIT patch. Make the actual on...
2002-11-09 Bruce MomjianAdd code to handle [ON COMMIT { PRESERVE ROWS | DELETE...
2002-09-18 Tom LaneExtend pg_cast castimplicit column to a three-way value...
2002-08-27 Tom LanePREPARE/EXECUTE statements. Patch by Neil Conway,...
2002-08-18 Peter EisentrautMake pg_dump output more portable and more pleasing...
2002-08-06 Tatsuo IshiiAdd SQL99 CONVERT() function.
2002-07-29 Tom LaneImplement CREATE/DROP OPERATOR CLASS. Work still remai...
2002-07-18 Peter Eisentrautpg_cast table, and standards-compliant CREATE/DROP...
2002-07-18 Bruce MomjianBack out BETWEEN node patch, was causing initdb failure.
2002-07-18 Bruce MomjianFinished the Between patch Christopher started.
2002-07-11 Tatsuo IshiiAdd new CREATE CONVERSION/DROP CONVERSION command.
2002-07-04 Thomas G. LockhartImplement the IS DISTINCT FROM operator per SQL99.
2002-06-22 Thomas G. LockhartImplement SQL99 CREATE CAST and DROP CAST statements.
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-06-20 Bruce MomjianImprove COPY syntax to use WITH clause, keep backward...
2002-06-15 Thomas G. LockhartAdd LOCALTIME and LOCALTIMESTAMP functions per SQL99...
2002-06-11 Thomas G. LockhartImplement SQL99 OVERLAY(). Allows substitution of a...
2002-06-11 Jan WieckKatherine Ward wrote:
2002-05-22 Peter EisentrautAdd optional "validator" function to languages that...
2002-05-17 Peter EisentrautExtend syntax of CREATE FUNCTION to resemble SQL99.
2002-05-03 Tom LaneRetire xlateSqlType/xlateSqlFunc; all type name transla...
2002-05-02 Tom LaneTweak scanner/grammar interface so that the keyword...
2002-04-21 Thomas G. LockhartMake WITHOUT TIME ZONE the default for TIMESTAMP and...
2002-04-21 Tom LaneRestructure AclItem representation so that we can have...
2002-04-18 Tom LaneMake PUBLIC an unreserved word (in fact, not a keyword...
2002-03-19 Bruce MomjianAdd DOMAIN support. Includes manual pages and regressi...
next