summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2008-02-07Some variants of ALTER OWNER tried to make the "object" field of theTom Lane
2008-02-07Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane
2008-01-11The original implementation of polymorphic aggregates didn't really get theTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-01Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane
2007-11-28Install a lookaside cache to speed up repeated lookups of the same operatorTom Lane
2007-11-26Fix select_common_type() so that it can select a domain type, if all inputsTom Lane
2007-11-22Actually ... it's pretty silly that parse_oper.c doesn't set up theTom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-11-11Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane
2007-10-29Remove the hack in the grammar that "optimized away" DEFAULT NULL clauses.Tom Lane
2007-10-25Tweak new error messages to match the actual syntax of DECLARE CURSOR.Tom Lane
2007-10-24Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problemsTom Lane
2007-09-27Fix Assert failure in ExpandColumnRefStar --- what I thought was a can'tTom Lane
2007-09-24Remove "convert 'blah' using conversion_name" facility, because if itAndrew Dunstan
2007-09-12Perform post-escaping encoding validity checks on SQL literals and COPY inputAndrew Dunstan
2007-09-06Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane
2007-09-03Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane
2007-09-03Implement function-local GUC parameter settings, as per recent discussion.Tom Lane
2007-08-27Fix a couple of misbehaviors rooted in the fact that the default creationTom Lane
2007-08-22Remove option to change parser of an existing text search configuration.Tom Lane
2007-08-21Avoid using TEXT as a Bison symbol, since this provokes warnings onTom Lane
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-08-12Increase the initial size of StringInfo buffers to 1024 bytes (from 256);Tom Lane
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-07-03Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway
2007-06-23Separate parse-analysis for utility commands out of parser/analyze.cTom Lane
2007-06-20transformColumnDefinition failed to complain aboutTom Lane
2007-06-19Remove duplicate #include.Neil Conway
2007-06-18Arrange for quote_identifier() and pg_dump to not quote keywords that areTom Lane
2007-06-15Tweak the API for per-datatype typmodin functions so that they are passedTom Lane
2007-06-11Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane
2007-06-11Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane
2007-06-06Fix up text concatenation so that it accepts all the reasonable cases thatTom Lane
2007-06-05Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane
2007-05-11Support arrays of composite types, including the rowtypes of regular tablesTom Lane
2007-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane
2007-04-26Rename the newly-added commands for discarding session state.Neil Conway
2007-04-16Expose more cursor-related functionality in SPI: specifically, allowTom Lane
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-04-08Support syntax "CLUSTER table USING index", which is more logical.Bruce Momjian
2007-04-02Allow NOTIFY/LISTEN/UNLISTEN to only take relation names, notBruce Momjian
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-26Allow non-superuser database owners to create procedural languages.Tom Lane
2007-03-19Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck
2007-03-17Simplified sortby ruleMichael Meskes
2007-03-17Ooops, got only one of the two ArrayExpr variants correct in firstTom Lane
2007-03-17Fix up the remaining places where the expression node structure would loseTom Lane