summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
* Remove unnecessary inclusion, per Andreas.Tom Lane2002-11-041-2/+3
* Remove encoding lookups from grammar stage, push them back to placesTom Lane2002-11-021-86/+30
* Arrange to compile flex output files as inclusions into other filesTom Lane2002-11-012-4/+12
* Clean up gram.y trailing spaces.Bruce Momjian2002-10-311-10/+10
* Function-call-style type coercions should be treated as explicitTom Lane2002-10-242-7/+11
* Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane2002-10-211-21/+1
* Disallow aggregate functions in rule WHERE clauses. Per gripe fromTom Lane2002-10-201-1/+5
* Fix case where a function in FROM returns a scalar type, but isTom Lane2002-10-191-8/+25
* Adjust handling of command status strings in the presence of rules,Tom Lane2002-10-141-3/+3
* Make the world at least somewhat safe for zero-column tables, andTom Lane2002-09-281-2/+4
* Remove commas from %type and %token lists, for compatibility with newerTom Lane2002-09-221-161/+161
* Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane2002-09-221-1/+5
* Bring SIMILAR TO and SUBSTRING into some semblance of conformance withTom Lane2002-09-221-5/+23
* Move most of the error checking for foreign-key constraints out ofTom Lane2002-09-221-416/+38
* Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane2002-09-1810-475/+453
* Fix some operator-precedence problems. New constructs IS DISTINCT FRMTom Lane2002-09-051-9/+17
* Be careful to include postgres.h *before* any system headers, to ensureTom Lane2002-09-051-2/+2
* pgindent run.Bruce Momjian2002-09-0411-450/+487
* I checked all the previous string handling errors and most of them wereBruce Momjian2002-09-021-2/+2
* CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.Tom Lane2002-09-021-12/+15
* Code cleanups: make non-implicit WITHOUT FUNCTION casts work, avoidTom Lane2002-09-011-299/+266
* Code review for domain-constraints patch. Use a new ConstraintTest nodeTom Lane2002-08-313-65/+105
* Remove #ifdef MULTIBYTE per hackers list discussion.Tatsuo Ishii2002-08-292-17/+4
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-292-177/+142
* backend where a statically sized buffer is written to. Most of theseBruce Momjian2002-08-282-4/+4
* Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and asBruce Momjian2002-08-281-12/+23
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-274-29/+261
* This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian2002-08-271-3/+3
* Modify array operations to include array's element type OID in theTom Lane2002-08-262-5/+6
* Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane2002-08-222-39/+51
* Fix pg_dump to dump serial columns as serials. Per pghackers discussion,Tom Lane2002-08-191-11/+5
* Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane2002-08-193-70/+45
* Remove optimization whereby parser would make only one sort-list entryTom Lane2002-08-181-11/+16
* Make pg_dump output more portable and more pleasing to look at.Peter Eisentraut2002-08-181-1/+3
* Code review for 'at character n' patch --- point at proper end ofTom Lane2002-08-181-7/+8
* In that case, attached is a patch which locates the beginning of theBruce Momjian2002-08-171-3/+7
* Tom Lane wrote:Bruce Momjian2002-08-151-2/+38
* Allow schema-qualified operator names to be used in the optionalTom Lane2002-08-101-50/+18
* Cause view/rule display to work as expected after rename of an underlyingTom Lane2002-08-081-17/+24
* Cause schema-qualified FROM items and schema-qualified variable referencesTom Lane2002-08-084-62/+259
* parseTypeString wasn't quite paranoid enough.Tom Lane2002-08-081-1/+3
* Add SQL99 CONVERT() function.Tatsuo Ishii2002-08-062-5/+59
* >> Hm. I'd sort of expect the "z" to become both the table and columnBruce Momjian2002-08-061-2/+2
* The attached patch disallows the use of coldeflists for functions thatBruce Momjian2002-08-061-1/+22
* Preliminary code review for anonymous-composite-types patch: fix breakageTom Lane2002-08-052-71/+37
* Attached are two patches to implement and document anonymous compositeBruce Momjian2002-08-043-106/+305
* Implement IS OF and IS NOT OF type predicate.Thomas G. Lockhart2002-08-041-63/+200
* Implement IS OF type predicate. Can now do queries of the form:Thomas G. Lockhart2002-08-041-9/+44
* Implement hex literal conversion to bit string literal.Thomas G. Lockhart2002-08-041-34/+40
* The attached patch implements START TRANSACTION, per SQL99. TheBruce Momjian2002-08-041-28/+21