summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
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
2002-08-04Implement IS OF and IS NOT OF type predicate.Thomas G. Lockhart
2002-08-04Implement IS OF type predicate. Can now do queries of the form:Thomas G. Lockhart
2002-08-04Implement hex literal conversion to bit string literal.Thomas G. Lockhart
2002-08-04The attached patch implements START TRANSACTION, per SQL99. TheBruce Momjian
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-31Instead of having a configure-time DEFAULT_ATTSTATTARGET, store -1 inTom Lane
2002-07-30The attached patch removes the last remnants of support forBruce Momjian
2002-07-29Centralize code for interpreting schema references, which had gottenTom Lane