diff options
Diffstat (limited to 'src/test/modules/test_ddl_deparse/expected/alter_function.out')
-rw-r--r-- | src/test/modules/test_ddl_deparse/expected/alter_function.out | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/modules/test_ddl_deparse/expected/alter_function.out b/src/test/modules/test_ddl_deparse/expected/alter_function.out new file mode 100644 index 00000000000..3694f96723e --- /dev/null +++ b/src/test/modules/test_ddl_deparse/expected/alter_function.out @@ -0,0 +1,15 @@ +-- +-- ALTER_FUNCTION +-- +ALTER FUNCTION plpgsql_function_trigger_1 () + SET SCHEMA foo; +NOTICE: DDL test: type simple, tag ALTER FUNCTION +ALTER FUNCTION foo.plpgsql_function_trigger_1() + COST 10; +NOTICE: DDL test: type simple, tag ALTER FUNCTION +CREATE ROLE tmprole; +ALTER FUNCTION plpgsql_function_trigger_2() + OWNER TO tmprole; +ERROR: function plpgsql_function_trigger_2() does not exist +DROP OWNED BY tmprole; +DROP ROLE tmprole; |