summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
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
2002-08-18Remove optimization whereby parser would make only one sort-list entryTom Lane
2002-08-18Make pg_dump output more portable and more pleasing to look at.Peter Eisentraut
2002-08-18Code review for 'at character n' patch --- point at proper end ofTom Lane
2002-08-17In that case, attached is a patch which locates the beginning of theBruce Momjian
2002-08-15Tom Lane wrote:Bruce Momjian
2002-08-10Allow schema-qualified operator names to be used in the optionalTom Lane
2002-08-08Cause view/rule display to work as expected after rename of an underlyingTom Lane
2002-08-08Cause schema-qualified FROM items and schema-qualified variable referencesTom Lane
2002-08-08parseTypeString wasn't quite paranoid enough.Tom Lane
2002-08-06Add SQL99 CONVERT() function.Tatsuo Ishii
2002-08-06>> Hm. I'd sort of expect the "z" to become both the table and columnBruce Momjian
2002-08-06The attached patch disallows the use of coldeflists for functions thatBruce Momjian
2002-08-05Preliminary code review for anonymous-composite-types patch: fix breakageTom Lane
2002-08-04Attached are two patches to implement and document anonymous compositeBruce Momjian