]> granicus.if.org Git - postgresql/history - src/backend/parser/gram.y
Implement feature of new FE/BE protocol whereby RowDescription identifies
[postgresql] / src / backend / parser / gram.y
2003-05-04 Tom LaneWhen a TIMESTAMP, TIME, or INTERVAL precision is specif...
2003-04-29 Tom LaneCode review for holdable-cursors patch. Fix error...
2003-04-08 Tom LaneFirst phase of work on array improvements. ARRAY[x...
2003-04-01 Tom LaneAdd missing semicolon.
2003-03-27 Bruce MomjianThis patch implements holdable cursors, following the...
2003-03-20 Bruce MomjianAdd ALTER TABLE <tablename> CLUSTER ON <indexname>
2003-03-20 Bruce MomjianTodo items:
2003-03-11 Tom LaneImplement SQL92-compatible FIRST, LAST, ABSOLUTE n...
2003-03-10 Tom LaneRestructure parsetree representation of DECLARE CURSOR...
2003-02-16 Tom LaneCOALESCE() and NULLIF() are now first-class expressions...
2003-02-13 Bruce MomjianAdds in NO MAXVALUE and NO MINVALUE options for create...
2003-02-13 Bruce MomjianCode for WITHOUT OIDS.
2003-02-10 Tom LaneGet rid of last few vestiges of parsetree dependency...
2003-02-09 Tom LaneCreate a distinction between Lists of integers and...
2003-02-05 Tom LaneAllow qualified type names in CREATE CAST, DROP CAST...
2003-02-03 Bruce MomjianChange MOVE LAST to MOVE ALL.
2003-02-02 Tom LaneImplement EXPLAIN EXECUTE. By Neil Conway, with some...
2003-01-23 Peter EisentrautGrant options, and cascading revoke. Grant options...
2003-01-10 Peter EisentrautRead-only transactions, as defined in SQL.
2003-01-10 Tom LaneFurther tweaking of parsetree & plantree representation...
2003-01-10 Peter EisentrautAdd optional drop behavior clause to REVOKE command...
2003-01-09 Tom LaneAdjust parser so that 'x NOT IN (subselect)' is convert...
2003-01-08 Tom LaneCode review for FETCH/MOVE 0 changes. Improve document...
2003-01-06 Tom LaneALTER DOMAIN OWNER, from Rod Taylor.
2002-12-30 Bruce MomjianCause FETCH 1 to return the current cursor row, or...
2002-12-12 Tom LanePreliminary code review for domain CHECK constraints...
2002-12-12 Tom LanePhase 2 of read-only-plans project: restructure express...
2002-12-06 Bruce MomjianRe-addd Rod's ALTER DOMAIN patch.
2002-12-06 Bruce MomjianBack out ALTER DOMAIN patch until missing file appears.
2002-12-06 Bruce MomjianALTER DOMAIN .. SET / DROP NOT NULL
2002-11-25 Tom LaneRemove unused constisset and constiscast fields of...
2002-11-25 Tom LaneUn-break triggers declared for INSERT OR DELETE OR...
2002-11-23 Bruce MomjianThis patch implements FOR EACH STATEMENT triggers,...
2002-11-18 Bruce MomjianRemove ALL from CLUSTER ALL. Use just CLUSTER.
2002-11-15 Bruce MomjianNew version attached. The following is implemented:
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-10 Bruce MomjianTweak CREATE SEQUENCE grammar to be more SQL1999 standa...
2002-11-09 Bruce MomjianAdd code to handle [ON COMMIT { PRESERVE ROWS | DELETE...
2002-11-02 Tom LaneRemove encoding lookups from grammar stage, push them...
2002-11-01 Tom LaneArrange to compile flex output files as inclusions...
2002-10-31 Bruce MomjianClean up gram.y trailing spaces.
2002-09-22 Tom LaneRemove commas from %type and %token lists, for compatib...
2002-09-22 Tom LaneReplace pg_attribute.attisinherited with attislocal...
2002-09-22 Tom LaneBring SIMILAR TO and SUBSTRING into some semblance...
2002-09-18 Tom LaneExtend pg_cast castimplicit column to a three-way value...
2002-09-05 Tom LaneFix some operator-precedence problems. New constructs...
2002-09-02 Tom LaneCREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.
2002-08-29 Tom LaneCode review for standalone composite types, query-speci...
2002-08-28 Bruce Momjianbackend where a statically sized buffer is written...
2002-08-28 Bruce MomjianAllow FOR UPDATE to appear after LIMIT/OFFSET to match...
2002-08-27 Tom LanePREPARE/EXECUTE statements. Patch by Neil Conway,...
2002-08-19 Tom LaneRemove Ident nodetype in favor of using String nodes...
2002-08-15 Bruce MomjianTom Lane wrote:
2002-08-10 Tom LaneAllow schema-qualified operator names to be used in...
2002-08-06 Tatsuo IshiiAdd SQL99 CONVERT() function.
2002-08-05 Tom LanePreliminary code review for anonymous-composite-types...
2002-08-04 Bruce MomjianAttached are two patches to implement and document...
2002-08-04 Thomas G. LockhartImplement IS OF and IS NOT OF type predicate.
2002-08-04 Bruce MomjianThe attached patch implements START TRANSACTION, per...
2002-07-31 Tom LaneInstead of having a configure-time DEFAULT_ATTSTATTARGE...
2002-07-30 Bruce MomjianThe attached patch removes the last remnants of support for
2002-07-29 Tom LaneImplement CREATE/DROP OPERATOR CLASS. Work still remai...
2002-07-24 Peter EisentrautRemove unused system table columns:
2002-07-20 Bruce MomjianThe attached patch fixes 2 trivial warnings generated...
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 Tom LaneImplement DROP SCHEMA. It lacks support for dropping...
2002-07-18 Bruce MomjianThe attached patch (against HEAD) implements
2002-07-18 Bruce MomjianFinished the Between patch Christopher started.
2002-07-18 Tatsuo IshiiI have committed many support files for CREATE CONVERSI...
2002-07-16 Tom LaneAdd more dependency insertions --- this completes the...
2002-07-14 Tom LaneAdd COMMENT ON CONSTRAINT facility (from Rod Taylor...
2002-07-12 Tom LaneSecond phase of committing Rod Taylor's pg_depend/pg_co...
2002-07-11 Tatsuo IshiiAdd new CREATE CONVERSION/DROP CONVERSION command.
2002-07-06 Bruce MomjianI've fixed up the way domain constraints (not null...
2002-07-04 Thomas G. LockhartImplement the IS DISTINCT FROM operator per SQL99.
2002-07-01 Tom LaneFirst phase of applying Rod Taylor's pg_depend patch...
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-19 Bruce MomjianProperly mark rules that return no value.
2002-06-18 Bruce MomjianWrap long gram.y lines.
2002-06-18 Bruce MomjianChange CREATE DATABASE to use DefElem instead of constr...
2002-06-18 Bruce MomjianImprove rule action ordering in gram.y, more cleanups.
2002-06-17 Bruce MomjianMark noise keyword actions with {} rather than returnin...
2002-06-17 Bruce MomjianManually indent gram.y to be consistent.
2002-06-17 Bruce MomjianMerge ALTER GROUP ADD/DROP rules by creating add_drop...
2002-06-17 Bruce MomjianSimplify optional WITH handling in CREATE USER, ALTER...
2002-06-15 Thomas G. LockhartAdd LOCALTIME and LOCALTIMESTAMP functions per SQL99...
2002-06-13 Thomas G. LockhartAdd PLACING to the list of reserved keywords. Added...
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-19 Peter EisentrautReorder keyword token declarations alphabetically....
2002-05-17 Peter EisentrautExtend syntax of CREATE FUNCTION to resemble SQL99.
2002-05-17 Tom LaneMerge the last few variable.c configuration variables...
2002-05-13 Tom LaneMake operators have their own comments separate from...
2002-05-12 Tom LaneFirst pass at set-returning-functions in FROM, by Joe...
next