summaryrefslogtreecommitdiff
path: root/src/backend/commands/aggregatecmds.c
Commit message (Collapse)AuthorAgeFilesLines
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
|
* Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut2003-09-251-2/+2
| | | | | terms, add some clarifications, fix some untranslatable attempts at dynamic message building.
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
|
* pgindent run.Bruce Momjian2003-08-041-5/+5
|
* Adjust 'permission denied' messages to be more useful and consistent.Tom Lane2003-08-011-5/+9
|
* Another round of error message editing, covering backend/commands/.Tom Lane2003-07-201-23/+39
|
* Some early work on error message editing. Operator-not-found andTom Lane2003-07-041-3/+3
| | | | | function-not-found messages now distinguish the cases no-match and ambiguous-match, and they follow the style guidelines too.
* Aggregates can be polymorphic, using polymorphic implementation functions.Tom Lane2003-07-011-2/+4
| | | | | | It also works to create a non-polymorphic aggregate from polymorphic functions, should you want to do that. Regression test added, docs still lacking. By Joe Conway, with some kibitzing from Tom Lane.
* First batch of object rename commands.Peter Eisentraut2003-06-271-1/+74
|
* Back out array mega-patch.Bruce Momjian2003-06-251-4/+2
| | | | Joe Conway
* Array mega-patch.Bruce Momjian2003-06-241-2/+4
| | | | Joe Conway
* pgindent run.Bruce Momjian2002-09-041-8/+8
|
* Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane2002-08-221-24/+18
| | | | | | with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ...
* Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane2002-07-121-29/+22
| | | | | | | | | | | | pg_relcheck is gone; CHECK, UNIQUE, PRIMARY KEY, and FOREIGN KEY constraints all have real live entries in pg_constraint. pg_depend exists, and RESTRICT/CASCADE options work on most kinds of DROP; however, pg_depend is not yet very well populated with dependencies. (Most of the ones that are present at this point just replace formerly hardwired associations, such as the implicit drop of a relation's pg_type entry when the relation is dropped.) Need to add more logic to create dependency entries, improve pg_dump to dump constraints in place of indexes and triggers, and add some regression tests.
* Restructure aclcheck error reporting to make permission-failureTom Lane2002-04-271-15/+15
| | | | | | | messages more uniform and internationalizable: the global array aclcheck_error_strings[] is gone in favor of a subroutine aclcheck_error(). Partial implementation of namespace-related permission checks --- not all done yet.
* The contents of command.c, creatinh.c, define.c, remove.c and rename.cTom Lane2002-04-151-0/+208
have been divided according to the type of object manipulated - so ALTER TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and so on. A few common support routines remain in define.c (prototypes in src/include/commands/defrem.h). No code has been changed except for includes to reflect the new files. The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c, and typecmds.c remain in src/include/commands/defrem.h. From John Gray <jgray@azuli.co.uk>