summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-04-09Clean up overly complex code for issuing some related error messages.Tom Lane
2011-04-08Fix bug in propagating ALTER TABLE actions to typed tables.Robert Haas
2011-04-07Fix collations when we call transformWhereClause from outside the parser.Tom Lane
2011-04-07Revise the API for GUC variable assign hooks.Tom Lane
2011-04-04Rearrange "add column" logic to merge columns at exec time.Robert Haas
2011-04-01Support comments on FOREIGN DATA WRAPPER and SERVER objects.Robert Haas
2011-03-28Prevent a rowtype from being included in itself.Tom Lane
2011-03-26Clean up cruft around collation initialization for tupdescs and scankeys.Tom Lane
2011-03-26Pass collation to makeConst() instead of looking it up internally.Tom Lane
2011-03-24Add post-creation hook for extensions, consistent with other object types.Robert Haas
2011-03-24Clean up handling of COLLATE clauses in index column definitions.Tom Lane
2011-03-22Make FKs valid at creation when added as column constraints.Simon Riggs
2011-03-22Improve reporting of run-time-detected indeterminate-collation errors.Tom Lane
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-19Fix possible "tuple concurrently updated" error in ALTER TABLE.Robert Haas
2011-03-12Make all comparisons done for/with statistics use the default collation.Tom Lane
2011-03-11Split CollateClause into separate raw and analyzed node types.Tom Lane
2011-03-11Create an explicit concept of collations that work for any encoding.Tom Lane
2011-03-10Remove collation information from TypeName, where it does not belong.Tom Lane
2011-03-09Adjust the permissions required for COMMENT ON ROLE.Tom Lane
2011-03-08Don't throw a warning if vacuum sees PD_ALL_VISIBLE flag set on a page thatHeikki Linnakangas
2011-03-05Create extension infrastructure for the core procedural languages.Tom Lane
2011-03-04Refactor seclabel.c to use the new check_object_ownership function.Robert Haas
2011-03-04Don't allow CREATE TABLE AS to create a column with invalid collationPeter Eisentraut
2011-03-04Allow non-superusers to create (some) extensions.Tom Lane
2011-03-04When creating a collation, check that the locales can be loadedPeter Eisentraut
2011-03-01Include the target table in EXPLAIN output for ModifyTable nodes.Tom Lane
2011-03-01Rearrange snapshot handling to make rule expansion more consistent.Tom Lane
2011-02-27Refactor the executor's API to support data-modifying CTEs better.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-22Fix a couple of unlogged tables goofs.Robert Haas
2011-02-22Fix dangling-pointer problem in before-row update trigger processing.Tom Lane
2011-02-21Add ENCODING option to COPY TO/FROM and file_fdw.Itagaki Takahiro
2011-02-20Add contrib/file_fdw foreign-data wrapper for reading files via COPY.Tom Lane
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-18Fix an uninitialized field in DR_copy.Itagaki Takahiro
2011-02-16Make a no-op ALTER EXTENSION UPDATE give just a NOTICE, not ERROR.Tom Lane
2011-02-16Export the external file reader used in COPY FROM as APIs.Itagaki Takahiro
2011-02-15Avoid a few more SET DATA TYPE table rewrites.Robert Haas
2011-02-15Delete stray word from comment.Robert Haas
2011-02-15Rearrange extension-related views as per recent discussion.Tom Lane
2011-02-14Support replacing MODULE_PATHNAME during extension script file execution.Tom Lane
2011-02-14Change the naming convention for extension files to use double dashes.Tom Lane
2011-02-12Refactor ALTER EXTENSION UPDATE to have cleaner multi-step semantics.Tom Lane
2011-02-12DDL support for collationsPeter Eisentraut
2011-02-12Teach ALTER TABLE .. SET DATA TYPE to avoid some table rewrites.Robert Haas
2011-02-12Clean up installation directory choices for extensions.Tom Lane