summaryrefslogtreecommitdiff
path: root/src/backend/commands/comment.c
Commit message (Collapse)AuthorAgeFilesLines
* Mark functions as static and ifdef NOT_USED as appropriate.Bruce Momjian2000-06-081-1/+2
|
* Latest round of fmgr updates. All functions with bool,char, or int2Tom Lane2000-06-051-1/+1
| | | | | | | inputs have been converted to newstyle. This should go a long way towards fixing our portability problems with platforms where char and short parameters are passed differently from int-width parameters. Still more to do for the Alpha port however.
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-301-4/+0
|
* First round of changes for new fmgr interface. fmgr itself and theTom Lane2000-05-281-2/+3
| | | | | | | key call sites are changed, but most called functions are still oldstyle. An exception is that the PL managers are updated (so, for example, NULL handling now behaves as expected in plperl and plpgsql functions). NOTE initdb is forced due to added column in pg_proc.
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-470/+521
|
* Fix a bunch of minor portability problems and maybe-bugs revealed byTom Lane2000-03-171-9/+9
| | | | | | running gcc and HP's cc with warnings cranked way up. Signed vs unsigned comparisons, routines declared static and then defined not-static, that kind of thing. Tedious, but perhaps useful...
* Bruce,Bruce Momjian2000-01-201-3/+9
| | | | | | | | | | Attached is a small fix for a stupid mistake I made in comment.c - an attempt to drop a non-existent comment would dump core :-(. Sometimes, I'm as sharp as a marble. Sorry, Mike Mascari
* Bruce,Bruce Momjian2000-01-181-0/+10
| | | | | | | | | | | | Attached is a patch which patches cleanly against the Sunday afternoon snapshot. It modifies pg_dump to dump COMMENT ON statements for user-definable descriptions. In addition, it also modifies comment.c so that the operator behavior is as Peter E. would like: a comment on an operator is applied to the underlying function. Thanks, Mike Mascari
* setheapoverride() is history. Uses replaced with CommandCounterIncrement()Tom Lane2000-01-171-2/+0
| | | | | where necessary --- several of them didn't really need it, though. tqual-checking macros simplified accordingly.
* CommentProc was careless about too many arguments.Tom Lane2000-01-121-51/+50
|
* Make number of args to a function configurable.Bruce Momjian2000-01-101-99/+99
|
* Some changes to prepare for LONG attributes.Jan Wieck1999-12-161-1/+1
| | | | Jan
* Add pg_statistic index, add missing Hiroshi file.Bruce Momjian1999-11-241-1/+1
|
* Rename heap_replace to heap_update.Bruce Momjian1999-11-241-2/+2
|
* Add system indexes to match all caches.Bruce Momjian1999-11-221-8/+8
| | | | | | | Make all system indexes unique. Make all cache loads use system indexes. Rename *rel to *relid in inheritance tables. Rename cache names to be clearer.
* Changed pg_rewrite attributes ev_qual and ev_action to the newJan Wieck1999-11-181-1/+1
| | | | | | compressed lztext data type. Jan
* Hello.Bruce Momjian1999-10-261-0/+796
The following patch extends the COMMENT ON functionality to the rest of the database objects beyond just tables, columns, and views. The grammer of the COMMENT ON statement now looks like: COMMENT ON [ [ DATABASE | INDEX | RULE | SEQUENCE | TABLE | TYPE | VIEW ] <objname> | COLUMN <relation>.<attribute> | AGGREGATE <aggname> <aggtype> | FUNCTION <funcname> (arg1, arg2, ...) | OPERATOR <op> (leftoperand_typ rightoperand_typ) | TRIGGER <triggername> ON relname> Mike Mascari (mascarim@yahoo.com)