aboutsummaryrefslogtreecommitdiff
path: root/src/test/modules/test_ddl_deparse/expected/alter_function.out
blob: 3694f96723e9b7d3c7146ed928bd1aa339ce58bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;