summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-11-11Fix bug in recent improvement to type resolution code. Forgot to retainThomas G. Lockhart
2000-11-09Arrange for CASE or UNION with only untyped literal constants as inputTom Lane
2000-11-08Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane
2000-11-08Add ANALYSE spelling of ANALYZE for vacuum.Bruce Momjian
2000-11-07Enable fallback to string type when argument(s) are of UNKNOWN type.Thomas G. Lockhart
2000-11-06Implement AT TIME ZONE SQL9x syntax.Thomas G. Lockhart
2000-11-06Allow type resolution for UNKNOWN arguments to functions to fall back toThomas G. Lockhart
2000-11-05New CHECKPOINT command.Vadim B. Mikheev
2000-11-05UNION select in a CREATE RULE caused a weird error, because transformRuleStmtTom Lane
2000-11-05Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane
2000-11-04Make PROCEDURAL optional in CREATE/DROP LANGUAGE.Bruce Momjian
2000-11-04This patch should allow primary/foreign keyBruce Momjian
2000-11-02Peter forgot to fix {operator} rule to match modified definition ofTom Lane
2000-10-31Change internal string representation of BitString node to include aPeter Eisentraut
2000-10-31Change the parser to convert SQL "position" and "substring" syntax toPeter Eisentraut
2000-10-30Disallow zero-length delimited identifier (per SQL).Peter Eisentraut
2000-10-29Remove special treatment of '|' operator, in the spirit of "sane" binaryPeter Eisentraut
2000-10-28Back out change to gram.y for parens.Bruce Momjian
2000-10-28Okay, here's my attempt at fixing the problems with parentheses inBruce Momjian
2000-10-25Accept CREATE DATABASE WITH ENCODING 'SQL_ASCII' even when MULTIBYTETom Lane
2000-10-22Some small polishing of Mark Hollomon's cleanup of DROP command: mightTom Lane
2000-10-20Add support for VPATH builds, that is, building somewhere else than in thePeter Eisentraut
2000-10-18The following patch was sent to the patches list:Bruce Momjian
2000-10-07Arrange that no database accesses are attempted during parser() --- thisTom Lane
2000-10-05Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane
2000-09-29Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane
2000-09-25Correct error in grammar for subselect-in-FROM: SQL spec does not allowTom Lane
2000-09-25Use variable aliases, if supplied, rather than real column names inTom Lane
2000-09-25 the patch include:Bruce Momjian
2000-09-19Implement differentiation between CURRENT_USER and SESSION_USER as per SQL.Peter Eisentraut
2000-09-17Parse JOIN/ON conditions with the proper visibility of input columns,Tom Lane
2000-09-15Reimplement LIKE/ESCAPE as operators so that indexscan optimizationTom Lane
2000-09-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-09-12This patch implements the following command:Bruce Momjian
2000-08-29This is mostly the same as an earlier patch IBruce Momjian
2000-08-28New configure test for flex, which recognizes only flex but does so in allPeter Eisentraut
2000-08-26Rename BITSPERBYTE to BITS_PER_BYTE to avoid conflict with <values.h>Tom Lane
2000-08-24SQL-language functions are now callable in ordinary fmgr contexts ...Tom Lane
2000-08-22Make scanner multibyte aware. Currently it may produce an incorrectTatsuo Ishii
2000-08-22Make makeObjectName multibyte aware. Currently, it may produceTatsuo Ishii
2000-08-20Make functional indexes accept binary-compatible functions, for exampleTom Lane
2000-08-12Mop-up for removal of ':' and ';' operators ... like, say, actuallyTom Lane
2000-08-11copyObject() and equal() now know about all parse-time node types,Tom Lane
2000-08-08Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane
2000-08-07TOAST mop-up work: update comments for tuple-size-related symbols suchTom Lane
2000-08-07Allow LIKE and ILIKE as TokenId (and hence ColId) to make sure that theyThomas G. Lockhart
2000-08-06Implement LIKE/ESCAPE. Change parser to use like()/notlike()Thomas G. Lockhart
2000-08-06Support SQL99 embedded double-quote syntax for quoted identifiers.Thomas G. Lockhart
2000-08-03Modify heap_open()/heap_openr() API per pghackers discussion of 11 July.Tom Lane