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