summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2006-03-23Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane
2006-03-16Clean up representation of function RTEs for functions returning RECORD.Tom Lane
2006-03-14It seems the YYLLOC_DEFAULT macro recommended by the Bison 1.875 manualTom Lane
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-07Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane
2006-03-06Enable standard_conforming_strings to be turned on.Bruce Momjian
2006-03-05Per recent discussion on -hackers, we should sometimes reorder theNeil Conway
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-03-03Add CASCADE option to TRUNCATE. Joachim WielandTom Lane
2006-02-28Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane
2006-02-19Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway
2006-02-18Mark unescape_single_char() "static": as far as I can see this functionNeil Conway
2006-02-12Revert patch becaues of locking concerns:Bruce Momjian
2006-02-12I've created a new shared catalog table pg_shdescription to storeBruce Momjian
2006-02-11Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian
2006-02-04DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan
2006-01-31Allow %TYPE to be used with SETOF, per gripe from Murat Tasan.Tom Lane
2006-01-22Fix alias-for-target-table-of-UPDATE-or-DELETE patch so that alias canTom Lane
2006-01-22Allow an optional alias for the target table to be specified for UPDATENeil Conway
2006-01-21Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian
2006-01-15Allow the types of parameters to PREPARE to be inferred. If a parameter'sNeil Conway
2006-01-12We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway
2006-01-10Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane
2005-12-29Revert some careless search-and-replace: "ADD" in comment text shouldNeil Conway
2005-12-28Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane
2005-12-27Protect ADD and HEADER symbols from conflicting with MIPS includes.Bruce Momjian
2005-12-25I have added these macros to c.h:Bruce Momjian
2005-12-23Allow CREATE/ALTER ROLE PASSWORD NULL to allow restoring the default statePeter Eisentraut
2005-12-11Implement IS NOT DISTINCT FROM, update the regression tests and docs.Neil Conway
2005-11-28Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-22 DROP DATABASE IF EXISTS variantAndrew Dunstan
2005-11-21Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera
2005-11-19DROP objecttype IF EXISTS for the following objects:Andrew Dunstan
2005-11-18Fix performance issue in exprTypmod(): for a COALESCE expression, itTom Lane
2005-11-13Force the second argument of SUBSTRING(foo FOR bar) to be int4, to avoidTom Lane
2005-10-26Adjust parser so that POSTQUEL-style implicit RTEs are stored withTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-06When a function not returning RECORD has a single OUT parameter, useTom Lane
2005-10-02Change nextval and other sequence functions to specify their sequenceTom Lane
2005-09-23Add comments explaining clauses used by CREATE ROLE but not ALTER.Bruce Momjian
2005-09-05Implement a preliminary 'template' facility for procedural languages,Tom Lane
2005-08-24Fix SHOW and RESET grammar to accept custom variable names.Tom Lane
2005-08-23Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane
2005-08-16Reject operator names >= NAMEDATALEN characters. These will not workTom Lane
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-08-01Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-28Make use of new list primitives list_append_unique and list_concat_uniqueTom Lane
2005-07-26Minor correction: cause ALTER ROLE role ROLE rolenames to behaveTom Lane