@@ -23,11 +23,10 @@ PostgreSQL documentation
2323<synopsis>
2424COMMENT ON
2525{
26- TABLE <replaceable class="PARAMETER">object_name</replaceable> |
27- COLUMN <replaceable class="PARAMETER">table_name</replaceable>.<replaceable class="PARAMETER">column_name</replaceable> |
2826 AGGREGATE <replaceable class="PARAMETER">agg_name</replaceable> (<replaceable class="PARAMETER">agg_type</replaceable> [, ...] ) |
2927 CAST (<replaceable>source_type</replaceable> AS <replaceable>target_type</replaceable>) |
3028 COLLATION <replaceable class="PARAMETER">object_name</replaceable> |
29+ COLUMN <replaceable class="PARAMETER">table_name</replaceable>.<replaceable class="PARAMETER">column_name</replaceable> |
3130 CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> ON <replaceable class="PARAMETER">table_name</replaceable> |
3231 CONVERSION <replaceable class="PARAMETER">object_name</replaceable> |
3332 DATABASE <replaceable class="PARAMETER">object_name</replaceable> |
@@ -47,6 +46,7 @@ COMMENT ON
4746 SCHEMA <replaceable class="PARAMETER">object_name</replaceable> |
4847 SEQUENCE <replaceable class="PARAMETER">object_name</replaceable> |
4948 SERVER <replaceable class="PARAMETER">object_name</replaceable> |
49+ TABLE <replaceable class="PARAMETER">object_name</replaceable> |
5050 TABLESPACE <replaceable class="PARAMETER">object_name</replaceable> |
5151 TEXT SEARCH CONFIGURATION <replaceable class="PARAMETER">object_name</replaceable> |
5252 TEXT SEARCH DICTIONARY <replaceable class="PARAMETER">object_name</replaceable> |
@@ -265,8 +265,11 @@ COMMENT ON CAST (text AS int4) IS 'Allow casts from text to int4';
265265COMMENT ON COLLATION "fr_CA" IS 'Canadian French';
266266COMMENT ON COLUMN my_table.my_column IS 'Employee ID number';
267267COMMENT ON CONVERSION my_conv IS 'Conversion to UTF8';
268+ COMMENT ON CONSTRAINT bar_col_cons ON bar IS 'Constrains column col';
268269COMMENT ON DATABASE my_database IS 'Development Database';
269270COMMENT ON DOMAIN my_domain IS 'Email Address Domain';
271+ COMMENT ON EXTENSION hstore IS 'implements the hstore data type';
272+ COMMENT ON FOREIGN DATA WRAPPER mywrapper IS 'my foreign data wrapper';
270273COMMENT ON FOREIGN TABLE my_foreign_table IS 'Employee Information in other database';
271274COMMENT ON FUNCTION my_function (timestamp) IS 'Returns Roman Numeral';
272275COMMENT ON INDEX my_index IS 'Enforces uniqueness on employee ID';
@@ -280,6 +283,7 @@ COMMENT ON ROLE my_role IS 'Administration group for finance tables';
280283COMMENT ON RULE my_rule ON my_table IS 'Logs updates of employee records';
281284COMMENT ON SCHEMA my_schema IS 'Departmental data';
282285COMMENT ON SEQUENCE my_sequence IS 'Used to generate primary keys';
286+ COMMENT ON SERVER myserver IS 'my foreign server';
283287COMMENT ON TABLE my_schema.my_table IS 'Employee Information';
284288COMMENT ON TABLESPACE my_tablespace IS 'Tablespace for indexes';
285289COMMENT ON TEXT SEARCH CONFIGURATION my_config IS 'Special word filtering';