@@ -306,7 +306,7 @@ COMMENT ON TABLE mytable IS NULL;
306306 Some more examples:
307307
308308<programlisting>
309- COMMENT ON ACCESS METHOD rtree IS 'R-Tree access method';
309+ COMMENT ON ACCESS METHOD gin IS 'GIN index access method';
310310COMMENT ON AGGREGATE my_aggregate (double precision) IS 'Computes sample variance';
311311COMMENT ON CAST (text AS int4) IS 'Allow casts from text to int4';
312312COMMENT ON COLLATION "fr_CA" IS 'Canadian French';
@@ -316,6 +316,7 @@ COMMENT ON CONSTRAINT bar_col_cons ON bar IS 'Constrains column col';
316316COMMENT ON CONSTRAINT dom_col_constr ON DOMAIN dom IS 'Constrains col of domain';
317317COMMENT ON DATABASE my_database IS 'Development Database';
318318COMMENT ON DOMAIN my_domain IS 'Email Address Domain';
319+ COMMENT ON EVENT TRIGGER abort_ddl IS 'Aborts all DDL commands';
319320COMMENT ON EXTENSION hstore IS 'implements the hstore data type';
320321COMMENT ON FOREIGN DATA WRAPPER mywrapper IS 'my foreign data wrapper';
321322COMMENT ON FOREIGN TABLE my_foreign_table IS 'Employee Information in other database';
@@ -330,12 +331,15 @@ COMMENT ON OPERATOR CLASS int4ops USING btree IS '4 byte integer operators for b
330331COMMENT ON OPERATOR FAMILY integer_ops USING btree IS 'all integer operators for btrees';
331332COMMENT ON POLICY my_policy ON mytable IS 'Filter rows by users';
332333COMMENT ON PROCEDURE my_proc (integer, integer) IS 'Runs a report';
334+ COMMENT ON PUBLICATION alltables IS 'Publishes all operations on all tables';
333335COMMENT ON ROLE my_role IS 'Administration group for finance tables';
336+ COMMENT ON ROUTINE my_routine (integer, integer) IS 'Runs a routine (which is a function or procedure)';
334337COMMENT ON RULE my_rule ON my_table IS 'Logs updates of employee records';
335338COMMENT ON SCHEMA my_schema IS 'Departmental data';
336339COMMENT ON SEQUENCE my_sequence IS 'Used to generate primary keys';
337340COMMENT ON SERVER myserver IS 'my foreign server';
338341COMMENT ON STATISTICS my_statistics IS 'Improves planner row estimations';
342+ COMMENT ON SUBSCRIPTION alltables IS 'Subscription for all operations on all tables';
339343COMMENT ON TABLE my_schema.my_table IS 'Employee Information';
340344COMMENT ON TABLESPACE my_tablespace IS 'Tablespace for indexes';
341345COMMENT ON TEXT SEARCH CONFIGURATION my_config IS 'Special word filtering';
0 commit comments