File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -270,12 +270,22 @@ def create_test_range(conn):
270270
271271 conn .execute (
272272 """
273- ALTER FUNCTION testschema.testrange(double precision, double precision) OWNER TO root;
274- ALTER FUNCTION testschema.testrange(double precision, double precision, text) OWNER TO root;
273+ ALTER FUNCTION testschema.testrange(
274+ double precision,
275+ double precision
276+ )
277+ OWNER TO root;
278+
279+ ALTER FUNCTION testschema.testrange(
280+ double precision,
281+ double precision,
282+ text
283+ )
284+ OWNER TO root;
275285
276286 ALTER FUNCTION public.testrange(text, text, text) OWNER TO root;
277287 ALTER FUNCTION public.testrange(text, text) OWNER TO root;
278-
288+
279289 drop schema if exists testschema cascade;
280290 create schema testschema;
281291
You can’t perform that action at this time.
0 commit comments