-
Alvaro Herrera authored
Our current DDL only allows a database name to be specified in COMMENT ON DATABASE, which Andrew Dunstan reports to make this test fail on the buildfarm. Remove the line until we gain a DDL command that allows the current database to be operated on without having the specify it by name. Backpatch to 9.5, where these tests appeared. Discussion: https://postgr.es/m/e6084b89-07a7-7e57-51ee-d7b8fc9ec864@2ndQuadrant.com
Alvaro Herrera authoredOur current DDL only allows a database name to be specified in COMMENT ON DATABASE, which Andrew Dunstan reports to make this test fail on the buildfarm. Remove the line until we gain a DDL command that allows the current database to be operated on without having the specify it by name. Backpatch to 9.5, where these tests appeared. Discussion: https://postgr.es/m/e6084b89-07a7-7e57-51ee-d7b8fc9ec864@2ndQuadrant.com
comment_on.out 1010 B
--
-- COMMENT_ON
--
COMMENT ON SCHEMA foo IS 'This is schema foo';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON TYPE enum_test IS 'ENUM test';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON TYPE int2range IS 'RANGE test';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON DOMAIN japanese_postal_code IS 'DOMAIN test';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON SEQUENCE fkey_table_seq IS 'SEQUENCE test';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON TABLE datatype_table IS 'This table should contain all native datatypes';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON VIEW datatype_view IS 'This is a view';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON FUNCTION c_function_test() IS 'FUNCTION test';
ERROR: function c_function_test() does not exist
COMMENT ON TRIGGER trigger_1 ON datatype_table IS 'TRIGGER test';
NOTICE: DDL test: type simple, tag COMMENT
COMMENT ON RULE rule_1 IS 'RULE test';
NOTICE: DDL test: type simple, tag COMMENT