summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2009-05-12Modify find_inheritance_children() and find_all_inheritors() to add theTom Lane
2009-05-12Do some minor code refactoring in preparation for changing the APIs ofTom Lane
2009-05-05Make new complaint about unsafe Unicode literals include an error location.Tom Lane
2009-05-05Disable the use of Unicode escapes in string constants (U&'') whenPeter Eisentraut
2009-04-28Move SERVER to the right place in the alphabetically sorted keyword list.Heikki Linnakangas
2009-04-24Fix some more 'variable may be used uninitialized' warnings from gcc 4.4.Tom Lane
2009-04-19Rethink the idea of having plpgsql depend on parser/gram.h. Aside from theTom Lane
2009-04-19Fix de-escaping checks so that we will reject \000 as well as other invalidlyTom Lane
2009-04-14Fix broken {xufailed} production that made HEAD fail onTom Lane
2009-04-06Rename the new CREATE DATABASE options to set collation and ctype intoHeikki Linnakangas
2009-04-04Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane
2009-03-26Gettext plural supportPeter Eisentraut
2009-03-08Add comments about kwlookup.c expectationsAlvaro Herrera
2009-03-07Separate the key word list that lived in keywords.c into a new header fileAlvaro Herrera
2009-03-04Clarify to the translator that yyerror() deals with the translation ofPeter Eisentraut
2009-02-24Add the possibility to specify an explicit validator function for foreign-dataPeter Eisentraut
2009-02-11Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physicallyTom Lane
2009-02-02Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-16Add vacuum_freeze_table_age GUC option, to control when VACUUM shouldHeikki Linnakangas
2009-01-12Use qualified_name instead of relation_expr for commands that have noPeter Eisentraut
2009-01-12Add ONLY support to LOCK and TRUNCATE. By default, these commands are nowPeter Eisentraut
2009-01-08Defend against null input in analyze_requires_snapshot(), per reportTom Lane
2009-01-07Add comment about why BETWEEN uses operator strings and not opclasses,Bruce Momjian
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-31Throw error if a <window definition> references a window that already has aTom Lane
2008-12-31Add a WINDOW attribute to CREATE FUNCTION, and teach pg_dump about it,Tom Lane
2008-12-31Add some basic support for window frame clauses to the window-functionsTom Lane
2008-12-28Support window functions a la SQL:2008.Tom Lane
2008-12-20Add missing semicolon, per buildfarm results. Martin PihlakTom Lane
2008-12-19SQL/MED catalog manipulation facilitiesPeter Eisentraut
2008-12-18Code review for function default parameters patch. Fix numerous problems asTom Lane
2008-12-17Don't reset pg_class.reltuples and relpages in VACUUM, if any pages wereHeikki Linnakangas
2008-12-14Restore enforce_generic_type_consistency's pre-8.3 behavior of allowing anTom Lane
2008-12-13Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane
2008-12-06Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view.Bruce Momjian
2008-12-04Default values for function argumentsPeter Eisentraut
2008-12-04Utilize the visibility map in autovacuum, too. There was an oversight inHeikki Linnakangas
2008-11-26Add %expect 0 to all parser input files to prevent conflicts slipping by.Peter Eisentraut
2008-11-24CLUSTER VERBOSE and corresponding clusterdb --verbose optionPeter Eisentraut
2008-11-21Use relation_expr for TABLE command, requested by Tom.Peter Eisentraut
2008-11-20TABLE commandPeter Eisentraut
2008-11-15Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane
2008-11-13Removed two non-terminals:Michael Meskes
2008-11-12Do not use ICONST/SCONST in rules other than Iconst/Sconst.Michael Meskes
2008-11-07Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane
2008-10-31Added missing ';'Michael Meskes
2008-10-31Add support for user-defined I/O conversion casts.Heikki Linnakangas
2008-10-29Since SQL:2003, the array size specification in the SQL ARRAY syntax hasPeter Eisentraut
2008-10-29Unicode escapes in strings and identifiersPeter Eisentraut