]> granicus.if.org Git - postgresql/history - src/backend/parser/gram.y
Add LOCALTIME and LOCALTIMESTAMP functions per SQL99 standard.
[postgresql] / src / backend / parser / gram.y
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...
2002-05-06 Tom LaneAccept SET SESSION AUTHORIZATION DEFAULT and RESET...
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-24 Bruce MomjianAttached is a patch for ALTER TRIGGER RENAME per the...
2002-04-21 Thomas G. LockhartOops. Remove declaration for set_name_needs_quotes...
2002-04-21 Thomas G. LockhartRemove the definition for set_name_needs_quotes() on...
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-04-18 Tom LaneRule names are now unique per-relation, rather than...
2002-04-17 Tom LaneOpclasses live in namespaces. I also took the opportun...
2002-04-16 Tom LaneOperators live in namespaces. CREATE/DROP/COMMENT...
2002-04-09 Tom LaneFunctions live in namespaces. Qualified function names...
2002-04-05 Bruce MomjianAdd INSERT(..., DEFAULT, ).
2002-04-01 Tom LaneALTER TABLE SET/DROP NOT NULL, from Christopher Kings...
2002-04-01 Tom LaneCreate a new GUC variable search_path to control the...
2002-03-29 Tom Lanepg_type has a typnamespace column; system now supports...
2002-03-22 Tom LaneA little further progress on schemas: push down RangeVa...
2002-03-21 Tom LaneFirst phase of SCHEMA changes, concentrating on fixing...
2002-03-20 Tom LaneCode review for DOMAIN patch.
2002-03-19 Bruce MomjianFix DOMAIN breakage.
2002-03-19 Bruce MomjianAdd DOMAIN support. Includes manual pages and regressi...
2002-03-10 Bruce MomjianAdd DEFAULT_INDEX_TYPE == "btree", for clarity.
2002-03-10 Bruce MomjianDisable brackets in multi-statement rules, as discussed.
2002-03-09 Thomas G. LockhartGuard against NULL strings in SET key=val constructs.
2002-03-08 Tom LaneFix copying/equality-check bugs in GrantStmt and Constr...
2002-03-07 Bruce MomjianBack out domain patch until it works properly.
2002-03-06 Bruce MomjianOk. Updated patch attached.
2002-03-06 Bruce MomjianChange made to elog:
2002-03-05 Bruce MomjianI attach a version of my toast-slicing patch, against...
2002-03-02 Bruce MomjianCommit to match discussed elog() changes. Only update...
2002-03-01 Peter EisentrautUser and database-specific session defaults for run...
2002-02-25 Bruce MomjianRe-add equals documentation with CREATE DATABASE.
2002-02-25 Bruce MomjianRemove documentation of equals in CREATE DATABASE....
2002-02-24 Tom LaneAdd OWNER option to CREATE DATABASE, so superusers...
2002-02-18 Peter EisentrautPrivileges on functions and procedural languages
2002-02-18 Bruce MomjianDisable LIMIT #,# syntax, as agreed to months ago....
2001-12-09 Thomas G. LockhartAllow variable (unrestricted) precision for TIME and...
2001-11-16 Tom LaneUpdate keyword lists per suggestions by Peter. There...
2001-11-12 Tom LaneTweak parser so that there is a defined representation...
2001-11-10 Tom LaneAllow TIMESTAMP, VARCHAR, et al to be used as unquoted...
2001-11-05 Tom LaneCREATE TABLE foo (x,y,z) AS SELECT ... can't apply...
2001-10-31 Bruce MomjianAdd ALTER TABLE ADD UNIQUE regression tests from Christ...
2001-10-23 Bruce MomjianNow I had them reversed. Wow that syntax is error...
2001-10-23 Bruce MomjianSyntax fix. Can't use #ifdef in gram.y.
2001-10-23 Bruce MomjianBack out LIMIT #,# removal and mark it as to-be-removed...
2001-10-20 Bruce MomjianChange LIMIT #,# error message to be more generic.
2001-10-20 Bruce MomjianRemove LIMIT #,# and suggest LIMIT # OFFSET #, per...
2001-10-20 Thomas G. LockhartFix transposed arguments for typmod for one INTERVAL...
2001-10-18 Tom LaneSpell 'between' correctly, clean up spacing in error...
2001-10-18 Thomas G. LockhartAccept an INTERVAL argument for SET TIME ZONE per SQL99.
2001-10-10 Peter EisentrautRemove gratuitous discrepancy between extract() and...
2001-10-09 Peter EisentrautAllow optional () after current_user, session_user...
2001-10-08 Tom LaneRemove redundant code, update comments, cause CURRENT_T...
2001-10-05 Thomas G. LockhartImplement explicit date/time precision per SQL99 spec.
2001-10-03 Tom LaneDROP AGGREGATE and COMMENT ON AGGREGATE now accept...
2001-10-03 Thomas G. LockhartImplement precision support for timestamp and time...
2001-10-02 Tom LaneAdd CREATE OR REPLACE FUNCTION syntax to allow replacin...
2001-10-01 Tom LaneSuppress timestamp_ops for backwards compatibility...
2001-09-28 Thomas G. LockhartMeasure the current transaction time to milliseconds.
2001-09-23 Bruce MomjianImplement TODO item:
2001-09-20 Peter EisentrautProvide tunable knob for x = NULL -> x IS NULL transfor...
2001-09-18 Tom LaneEXPLAIN ANALYZE feature to measure and show actual...
2001-09-06 Tatsuo IshiiCommit Karel's patch.
2001-08-26 Tom LaneTransaction IDs wrap around, per my proposal of 13...
2001-08-25 Tom LaneReplace implementation of pg_log as a relation accessed...
2001-08-21 Tom LaneRestructure pg_opclass, pg_amop, and pg_amproc per...
2001-08-16 Tom LaneSequences are now based on int8, not int4, arithmetic...
2001-08-15 Bruce MomjianUse MD5 for wire protocol encryption for >= 7.2 client...
2001-08-13 Peter EisentrautMake LANCOMPILER clause in CREATE LANGUAGE optional...
2001-08-10 Tom LaneMake OIDs optional, per discussions in pghackers. ...
2001-08-10 Bruce MomjianPatch to LOCK multiple tables in one LOCK command.
2001-08-06 Bruce MomjianAdd QueryIsRule gram.y reset.
2001-08-04 Bruce MomjianBack out LOCK A,B,C patch at Tom's suggestion.
2001-08-04 Bruce MomjianAdd LOCK A,B,C functionality as LOCK A;LOCK B;LOCK...
2001-07-16 Bruce MomjianMore EXTEND INDEX removal.
2001-07-16 Tom LanePartial indexes work again, courtesy of Martijn van...
2001-07-12 Tom LaneRemove grammar restrictions on order of optional clause...
2001-07-10 Tom LaneChanges from Vince Vielhaber to allow the optional...
2001-07-09 Tom LaneAdd SHARE UPDATE EXCLUSIVE lock mode, coming soon to...
2001-06-30 Peter EisentrautAllow default transaction isolation level (a.k.a. set...
2001-06-23 Bruce MomjianAdd TEMPORARY sequences and have SERIAL on a temp table...
2001-06-19 Tom LaneAdd IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the...
2001-06-09 Peter EisentrautAllow GRANT/REVOKE to/from more than one user per invoc...
2001-06-07 Bruce Momjianreset all: command line and .conf options change defaults
2001-06-04 Bruce MomjianThis patch adds support for %TYPE in CREATE FUNCTION...
2001-05-27 Peter EisentrautMake UPDATE and DELETE privileges distinct. Add REFERE...
2001-05-14 Bruce MomjianRemove unused tables pg_variable, pg_inheritproc, pg_ip...
2001-05-09 Peter EisentrautUse ColId instead of Ident for SET SESSION AUTHORIZATION.
2001-05-08 Peter EisentrautAdd SET SESSION AUTHORIZATION command.
next