File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5248,9 +5248,9 @@ reset work_mem;
52485248(1 row)
52495249
52505250-- check \df+
5251- begin;
52525251-- we have to use functions with a predictable owner name, so make a role
52535252create role regress_psql_user superuser;
5253+ begin;
52545254set session authorization regress_psql_user;
52555255create function psql_df_internal (float8)
52565256 returns float8
@@ -5275,6 +5275,7 @@ comment on function psql_df_plpgsql () is 'some comment';
52755275(3 rows)
52765276
52775277rollback;
5278+ drop role regress_psql_user;
52785279-- check \sf
52795280\sf information_schema._pg_expandarray
52805281CREATE OR REPLACE FUNCTION information_schema._pg_expandarray(anyarray, OUT x anyelement, OUT n integer)
Original file line number Diff line number Diff line change @@ -1276,9 +1276,9 @@ reset work_mem;
12761276\do && anyarray *
12771277
12781278-- check \df+
1279- begin ;
12801279-- we have to use functions with a predictable owner name, so make a role
12811280create role regress_psql_user superuser;
1281+ begin ;
12821282set session authorization regress_psql_user;
12831283
12841284create function psql_df_internal (float8)
@@ -1297,6 +1297,7 @@ comment on function psql_df_plpgsql () is 'some comment';
12971297
12981298\df+ psql_df_*
12991299rollback ;
1300+ drop role regress_psql_user;
13001301
13011302-- check \sf
13021303\sf information_schema ._pg_expandarray
You can’t perform that action at this time.
0 commit comments