summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
...
* Gettext plural supportPeter Eisentraut2009-03-261-6/+16
* Add comments about kwlookup.c expectationsAlvaro Herrera2009-03-082-3/+6
* Separate the key word list that lived in keywords.c into a new header fileAlvaro Herrera2009-03-074-485/+100
* Clarify to the translator that yyerror() deals with the translation ofPeter Eisentraut2009-03-041-3/+3
* Add the possibility to specify an explicit validator function for foreign-dataPeter Eisentraut2009-02-242-22/+21
* Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physicallyTom Lane2009-02-111-1/+8
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-022-14/+48
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-226-66/+304
* Add vacuum_freeze_table_age GUC option, to control when VACUUM shouldHeikki Linnakangas2009-01-161-4/+6
* Use qualified_name instead of relation_expr for commands that have noPeter Eisentraut2009-01-121-11/+11
* Add ONLY support to LOCK and TRUNCATE. By default, these commands are nowPeter Eisentraut2009-01-121-3/+18
* Defend against null input in analyze_requires_snapshot(), per reportTom Lane2009-01-081-2/+6
* Add comment about why BETWEEN uses operator strings and not opclasses,Bruce Momjian2009-01-071-1/+6
* Update copyright for 2009.Bruce Momjian2009-01-0118-36/+36
* Throw error if a <window definition> references a window that already has aTom Lane2008-12-311-2/+11
* Add a WINDOW attribute to CREATE FUNCTION, and teach pg_dump about it,Tom Lane2008-12-311-1/+5
* Add some basic support for window frame clauses to the window-functionsTom Lane2008-12-314-27/+120
* Support window functions a la SQL:2008.Tom Lane2008-12-2810-56/+669
* Add missing semicolon, per buildfarm results. Martin PihlakTom Lane2008-12-201-2/+2
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-192-10/+379
* Code review for function default parameters patch. Fix numerous problems asTom Lane2008-12-182-33/+83
* Don't reset pg_class.reltuples and relpages in VACUUM, if any pages wereHeikki Linnakangas2008-12-171-4/+4
* Restore enforce_generic_type_consistency's pre-8.3 behavior of allowing anTom Lane2008-12-141-8/+28
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-131-1/+50
* Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view.Bruce Momjian2008-12-061-1/+2
* Default values for function argumentsPeter Eisentraut2008-12-042-8/+65
* Utilize the visibility map in autovacuum, too. There was an oversight inHeikki Linnakangas2008-12-041-1/+4
* Add %expect 0 to all parser input files to prevent conflicts slipping by.Peter Eisentraut2008-11-261-1/+2
* CLUSTER VERBOSE and corresponding clusterdb --verbose optionPeter Eisentraut2008-11-241-11/+14
* Use relation_expr for TABLE command, requested by Tom.Peter Eisentraut2008-11-211-6/+3
* TABLE commandPeter Eisentraut2008-11-201-1/+23
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-151-1/+3
* Removed two non-terminals:Michael Meskes2008-11-131-13/+7
* Do not use ICONST/SCONST in rules other than Iconst/Sconst.Michael Meskes2008-11-121-8/+8
* Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane2008-11-071-1/+9
* Added missing ';'Michael Meskes2008-10-311-2/+3
* Add support for user-defined I/O conversion casts.Heikki Linnakangas2008-10-312-7/+32
* Since SQL:2003, the array size specification in the SQL ARRAY syntax hasPeter Eisentraut2008-10-291-3/+13
* Unicode escapes in strings and identifiersPeter Eisentraut2008-10-291-8/+180
* Add WITH [NO] DATA clause to CREATE TABLE AS, per SQL.Peter Eisentraut2008-10-282-29/+21
* SQL:2008 syntax CURRENT_CATALOG, CURRENT_SCHEMA, SET CATALOG, SET SCHEMA.Peter Eisentraut2008-10-272-4/+49
* Allow EXPLAIN on CREATE TABLE AS.Peter Eisentraut2008-10-271-1/+2
* Better solution to the IN-list issue: instead of having an arbitrary cutoff,Tom Lane2008-10-261-34/+30
* Add a heuristic to transformAExprIn() to make it prefer expanding "x IN (list)"Tom Lane2008-10-252-15/+35
* SQL:2008 alternative syntax for LIMIT/OFFSET:Peter Eisentraut2008-10-222-4/+44
* Allow SQL:2008 syntax ALTER TABLE ... ALTER COLUMN ... SET DATA TYPEPeter Eisentraut2008-10-212-8/+14
* SQL 200N -> SQL:2003Peter Eisentraut2008-10-201-2/+2
* Implement comparison of generic records (composite types), and invent aTom Lane2008-10-131-3/+61
* Modify the parser's error reporting to include a specific hint for the caseTom Lane2008-10-082-6/+67
* Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane2008-10-071-5/+5