aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAge
* Don't generate 'zero' typeids in the output from gen_cross_product.Tom Lane2003-06-25
* When a TIMESTAMP, TIME, or INTERVAL precision is specified larger than ourTom Lane2003-05-04
* Fix misbehavior of func_error() on type names containing '%'.Tom Lane2003-04-23
* Remove premature attempt to constant-fold type coercion expressions.Tom Lane2003-04-10
* Repair incorrect checking of grouped/ungrouped variables in the presenceTom Lane2003-04-03
* Parser was dropping foreign-key constraints on the floor if present inTom Lane2003-02-13
* Use a varno not chosen at random for dummy variables in the top-levelTom Lane2003-02-11
* Allow qualified type names in CREATE CAST, DROP CAST. Also allow theTom Lane2003-02-05
* Tweak bison build rules so that we get the same error messages fromTom Lane2003-01-31
* Deliver better error message when a relation name is used in an expression.Tom Lane2002-12-27
* Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom Lane2002-12-16
* Add cast to suppress compile warning on Alphas.Tom Lane2002-11-11
* Remove unnecessary inclusion, per Andreas.Tom Lane2002-11-04
* Remove encoding lookups from grammar stage, push them back to placesTom Lane2002-11-02
* Arrange to compile flex output files as inclusions into other filesTom Lane2002-11-01
* Clean up gram.y trailing spaces.Bruce Momjian2002-10-31
* Function-call-style type coercions should be treated as explicitTom Lane2002-10-24
* Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane2002-10-21
* Disallow aggregate functions in rule WHERE clauses. Per gripe fromTom Lane2002-10-20
* Fix case where a function in FROM returns a scalar type, but isTom Lane2002-10-19
* Adjust handling of command status strings in the presence of rules,Tom Lane2002-10-14
* Make the world at least somewhat safe for zero-column tables, andTom Lane2002-09-28
* Remove commas from %type and %token lists, for compatibility with newerTom Lane2002-09-22
* Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane2002-09-22
* Bring SIMILAR TO and SUBSTRING into some semblance of conformance withTom Lane2002-09-22
* Move most of the error checking for foreign-key constraints out ofTom Lane2002-09-22
* Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane2002-09-18
* Fix some operator-precedence problems. New constructs IS DISTINCT FRMTom Lane2002-09-05
* Be careful to include postgres.h *before* any system headers, to ensureTom Lane2002-09-05
* pgindent run.Bruce Momjian2002-09-04
* I checked all the previous string handling errors and most of them wereBruce Momjian2002-09-02
* CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.Tom Lane2002-09-02
* Code cleanups: make non-implicit WITHOUT FUNCTION casts work, avoidTom Lane2002-09-01
* Code review for domain-constraints patch. Use a new ConstraintTest nodeTom Lane2002-08-31
* Remove #ifdef MULTIBYTE per hackers list discussion.Tatsuo Ishii2002-08-29
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-29
* backend where a statically sized buffer is written to. Most of theseBruce Momjian2002-08-28
* Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and asBruce Momjian2002-08-28
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-27
* This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian2002-08-27
* Modify array operations to include array's element type OID in theTom Lane2002-08-26
* Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane2002-08-22
* Fix pg_dump to dump serial columns as serials. Per pghackers discussion,Tom Lane2002-08-19
* Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane2002-08-19
* Remove optimization whereby parser would make only one sort-list entryTom Lane2002-08-18
* Make pg_dump output more portable and more pleasing to look at.Peter Eisentraut2002-08-18
* Code review for 'at character n' patch --- point at proper end ofTom Lane2002-08-18
* In that case, attached is a patch which locates the beginning of theBruce Momjian2002-08-17
* Tom Lane wrote:Bruce Momjian2002-08-15
* Allow schema-qualified operator names to be used in the optionalTom Lane2002-08-10