@@ -306,7 +306,7 @@ COMMENT ON TABLE mytable IS NULL;
306
306
Some more examples:
307
307
308
308
<programlisting>
309
- COMMENT ON ACCESS METHOD rtree IS 'R-Tree access method';
309
+ COMMENT ON ACCESS METHOD gin IS 'GIN index access method';
310
310
COMMENT ON AGGREGATE my_aggregate (double precision) IS 'Computes sample variance';
311
311
COMMENT ON CAST (text AS int4) IS 'Allow casts from text to int4';
312
312
COMMENT ON COLLATION "fr_CA" IS 'Canadian French';
@@ -316,6 +316,7 @@ COMMENT ON CONSTRAINT bar_col_cons ON bar IS 'Constrains column col';
316
316
COMMENT ON CONSTRAINT dom_col_constr ON DOMAIN dom IS 'Constrains col of domain';
317
317
COMMENT ON DATABASE my_database IS 'Development Database';
318
318
COMMENT ON DOMAIN my_domain IS 'Email Address Domain';
319
+ COMMENT ON EVENT TRIGGER abort_ddl IS 'Aborts all DDL commands';
319
320
COMMENT ON EXTENSION hstore IS 'implements the hstore data type';
320
321
COMMENT ON FOREIGN DATA WRAPPER mywrapper IS 'my foreign data wrapper';
321
322
COMMENT 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
330
331
COMMENT ON OPERATOR FAMILY integer_ops USING btree IS 'all integer operators for btrees';
331
332
COMMENT ON POLICY my_policy ON mytable IS 'Filter rows by users';
332
333
COMMENT ON PROCEDURE my_proc (integer, integer) IS 'Runs a report';
334
+ COMMENT ON PUBLICATION alltables IS 'Publishes all operations on all tables';
333
335
COMMENT 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)';
334
337
COMMENT ON RULE my_rule ON my_table IS 'Logs updates of employee records';
335
338
COMMENT ON SCHEMA my_schema IS 'Departmental data';
336
339
COMMENT ON SEQUENCE my_sequence IS 'Used to generate primary keys';
337
340
COMMENT ON SERVER myserver IS 'my foreign server';
338
341
COMMENT ON STATISTICS my_statistics IS 'Improves planner row estimations';
342
+ COMMENT ON SUBSCRIPTION alltables IS 'Subscription for all operations on all tables';
339
343
COMMENT ON TABLE my_schema.my_table IS 'Employee Information';
340
344
COMMENT ON TABLESPACE my_tablespace IS 'Tablespace for indexes';
341
345
COMMENT ON TEXT SEARCH CONFIGURATION my_config IS 'Special word filtering';
0 commit comments