]> granicus.if.org Git - postgresql/blob - src/test/modules/test_ddl_deparse/sql/comment_on.sql
Remove test for COMMENT ON DATABASE
[postgresql] / src / test / modules / test_ddl_deparse / sql / comment_on.sql
1 --
2 -- COMMENT_ON
3 --
4
5 COMMENT ON SCHEMA foo IS 'This is schema foo';
6 COMMENT ON TYPE enum_test IS 'ENUM test';
7 COMMENT ON TYPE int2range  IS 'RANGE test';
8 COMMENT ON DOMAIN japanese_postal_code IS 'DOMAIN test';
9 COMMENT ON SEQUENCE fkey_table_seq IS 'SEQUENCE test';
10 COMMENT ON TABLE datatype_table IS 'This table should contain all native datatypes';
11 COMMENT ON VIEW datatype_view IS 'This is a view';
12 COMMENT ON FUNCTION c_function_test() IS 'FUNCTION test';
13 COMMENT ON TRIGGER trigger_1 ON datatype_table IS 'TRIGGER test';
14 COMMENT ON RULE rule_1 IS 'RULE test';