summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2011-06-15Rework parsing of ConstraintAttributeSpec to improve NOT VALID handling.Tom Lane
2011-06-14Remove unused variablePeter Eisentraut
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-06-08Allow domains over arrays to match ANYARRAY parameters again.Tom Lane
2011-06-04Expose the "*VALUES*" alias that we generate for a stand-alone VALUES list.Tom Lane
2011-06-03Fix failure to check whether a rowtype's component types are sortable.Tom Lane
2011-05-11Clean up parsing of CREATE TRIGGER's argument list.Tom Lane
2011-05-06Remove precedence labeling of keywords TRUE, FALSE, UNKNOWN, and ZONE.Tom Lane
2011-04-25Refactor broken CREATE TABLE IF NOT EXISTS support.Robert Haas
2011-04-25Remove partial and undocumented GRANT .. FOREIGN TABLE support.Robert Haas
2011-04-22Make a code-cleanup pass over the collations patch.Tom Lane
2011-04-21Allow ALTER TABLE name {OF type | NOT OF}.Robert Haas
2011-04-18Fix handling of collations in multi-row VALUES constructs.Tom Lane
2011-04-18Only allow typed tables to hang off composite types, not e.g. tables.Robert Haas
2011-04-12Fix RI_Initial_Check to use a COLLATE clause when needed in its query.Tom Lane
2011-04-11Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-04-09Adjust collation determination rules as per discussion.Tom Lane
2011-04-08Avoid an unnecessary syscache lookup in parse_coerce.c.Tom Lane
2011-04-07Fix collations when we call transformWhereClause from outside the parser.Tom Lane
2011-04-01Support comments on FOREIGN DATA WRAPPER and SERVER objects.Robert Haas
2011-03-26More collations cleanup, from trawling for missed collation assignments.Tom Lane
2011-03-26Clean up a few failures to set collation fields in expression nodes.Tom Lane
2011-03-26Pass collation to makeConst() instead of looking it up internally.Tom Lane
2011-03-25Fix handling of collation in SQL-language functions.Tom Lane
2011-03-22Make FKs valid at creation when added as column constraints.Simon Riggs
2011-03-22Throw error for indeterminate collation of an ORDER/GROUP/DISTINCT target.Tom Lane
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-16Improve handling of unknown-type literals in UNION/INTERSECT/EXCEPT.Tom Lane
2011-03-15Remove 13 keywords that are used only for ROLE options.Robert Haas
2011-03-11Split CollateClause into separate raw and analyzed node types.Tom Lane
2011-03-10Remove collation information from TypeName, where it does not belong.Tom Lane
2011-03-08Add missing keywords to gram.y's unreserved_keywords list.Tom Lane
2011-03-04Allow non-superusers to create (some) extensions.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane
2011-02-23Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane
2011-02-21Add ENCODING option to COPY TO/FROM and file_fdw.Itagaki Takahiro
2011-02-20Implement an API to let foreign-data wrappers actually be functional.Tom Lane
2011-02-19Create the catalog infrastructure for foreign-data-wrapper handlers.Tom Lane
2011-02-18Applied a patch by Zoltán Böszörményi that makes ecpg's parser accept dyn...Michael Meskes
2011-02-12DDL support for collationsPeter Eisentraut
2011-02-12Add support for multiple versions of an extension and ALTER EXTENSION UPDATE.Tom Lane
2011-02-11Fix comment recently obsoletedAlvaro Herrera
2011-02-10Extend "ALTER EXTENSION ADD object" to permit "DROP object" as well.Tom Lane
2011-02-10Update commentPeter Eisentraut
2011-02-10Fix pg_upgrade to handle extensions.Tom Lane
2011-02-09Implement "ALTER EXTENSION ADD object".Tom Lane
2011-02-08Core support for "extensions", which are packages of SQL objects.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-02-08Extend ALTER TABLE to allow Foreign Keys to be added without initial validation.Simon Riggs