]> granicus.if.org Git - postgresql/history - src/backend/parser
Implement feature of new FE/BE protocol whereby RowDescription identifies
[postgresql] / src / backend / parser /
2003-05-06 Tom LaneImplement feature of new FE/BE protocol whereby RowDesc...
2003-05-05 Tom LaneNot sure why parser() was still doing clearerr(stdin...
2003-05-05 Tom LaneExtended query protocol: parse, bind, execute, describe...
2003-05-04 Tom LaneWhen a TIMESTAMP, TIME, or INTERVAL precision is specif...
2003-05-02 Tom LanePortal and memory management infrastructure for extende...
2003-04-29 Tom LaneInfrastructure for deducing Param types from context...
2003-04-29 Tom LaneCode review for holdable-cursors patch. Fix error...
2003-04-27 Tom LanePut back encoding-conversion step in processing of...
2003-04-24 Tom LaneInfrastructure for upgraded error reporting mechanism...
2003-04-10 Tom LaneRemove premature attempt to constant-fold type coercion...
2003-04-08 Tom LaneFirst phase of work on array improvements. ARRAY[x...
2003-04-03 Tom LaneRepair incorrect checking of grouped/ungrouped variable...
2003-04-01 Tom LaneAdd missing semicolon.
2003-03-27 Bruce MomjianThis patch implements holdable cursors, following the...
2003-03-22 Tom LaneAdjust subquery qual pushdown rules to be more forgivin...
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-19 Bruce MomjianBack out LOCKTAG changes by Rod Taylor, pending code...
2003-02-19 Bruce Momjian- Modifies LOCKTAG to include a 'classId'. Relation...
2003-02-16 Tom LaneCOALESCE() and NULLIF() are now first-class expressions...
2003-02-13 Tom LaneParser was dropping foreign-key constraints on the...
2003-02-13 Tom LaneArrange to give error when a SetOp member statement...
2003-02-13 Tom LanetransformExpr() was missing some cases it ought to...
2003-02-13 Bruce Momjian[ Revert patch ]
2003-02-13 Bruce MomjianAdds in NO MAXVALUE and NO MINVALUE options for create...
2003-02-13 Bruce MomjianCode for WITHOUT OIDS.
2003-02-13 Bruce Momjian> ================================================...
2003-02-11 Tom LaneUse a varno not chosen at random for dummy variables...
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-08 Tom LaneReplace planner's representation of relation sets,...
2003-02-05 Tom LaneAllow qualified type names in CREATE CAST, DROP CAST...
2003-02-03 Tom LaneDetermine the set of constraints applied to a domain...
2003-02-03 Bruce MomjianChange MOVE LAST to MOVE ALL.
2003-02-02 Tom LaneImplement EXPLAIN EXECUTE. By Neil Conway, with some...
2003-01-31 Tom LaneTweak bison build rules so that we get the same error...
2003-01-23 Peter EisentrautGrant options, and cascading revoke. Grant options...
2003-01-17 Tom LaneFix parse_agg.c to detect ungrouped Vars in sub-SELECTs...
2003-01-13 Tom LaneRecent changes in sublink representation require exprTy...
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.
2003-01-02 Tom LaneEnforces NOT NULL constraints to be applied against...
2002-12-30 Bruce MomjianCause FETCH 1 to return the current cursor row, or...
2002-12-27 Tom LaneDeliver better error message when a relation name is...
2002-12-17 Tom LaneTo suppress memory leakage in long-lived Lists, lremove...
2002-12-16 Tom LaneFix ALTER TABLE ADD COLUMN to disallow the same column...
2002-12-13 Tom LanePhase 3 of read-only-plans project: ExecInitExpr now...
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-30 Tom LaneCode review for IS DISTINCT FROM patch. Fix incorrect...
2002-11-30 Tom LaneMissed one place that can be simplified after recent...
2002-11-29 Tom LaneTighten selection of equality and ordering operators...
2002-11-26 Tom LaneUse Params, rather than run-time-modified Const nodes...
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-13 Bruce MomjianAdd new palloc0 call as merge of palloc and MemSet(0).
2002-11-11 Tom LaneCode review for ON COMMIT patch. Make the actual on...
2002-11-11 Tom LaneAdd cast to suppress compile warning on Alphas.
2002-11-11 Bruce MomjianBack out use of palloc0 in place if palloc/MemSet....
2002-11-10 Bruce MomjianMerge palloc()/MemSet(0) calls into a single palloc0...
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-04 Tom LaneRemove unnecessary inclusion, per Andreas.
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-10-24 Tom LaneFunction-call-style type coercions should be treated...
2002-10-21 Tom LaneFix places that were using IsTransactionBlock() as...
2002-10-20 Tom LaneDisallow aggregate functions in rule WHERE clauses...
2002-10-19 Tom LaneFix case where a function in FROM returns a scalar...
2002-10-14 Tom LaneAdjust handling of command status strings in the presen...
2002-09-28 Tom LaneMake the world at least somewhat safe for zero-column...
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-22 Tom LaneMove most of the error checking for foreign-key constra...
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-05 Tom LaneBe careful to include postgres.h *before* any system...
2002-09-04 Bruce Momjianpgindent run.
2002-09-02 Bruce MomjianI checked all the previous string handling errors and...
2002-09-02 Tom LaneCREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.
2002-09-01 Tom LaneCode cleanups: make non-implicit WITHOUT FUNCTION casts...
2002-08-31 Tom LaneCode review for domain-constraints patch. Use a new...
2002-08-29 Tatsuo IshiiRemove #ifdef MULTIBYTE per hackers list discussion.
2002-08-29 Tom LaneCode review for standalone composite types, query-speci...
next