We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5561b9 commit 8fb9d8bCopy full SHA for 8fb9d8b
1 file changed
tests/types/test_range.py
@@ -270,12 +270,22 @@ def create_test_range(conn):
270
271
conn.execute(
272
"""
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;
+ ALTER FUNCTION testschema.testrange(
+ double precision,
275
+ double precision
276
+ )
277
+ OWNER TO root;
278
+
279
280
281
282
+ text
283
284
285
286
ALTER FUNCTION public.testrange(text, text, text) OWNER TO root;
287
ALTER FUNCTION public.testrange(text, text) OWNER TO root;
-
288
289
drop schema if exists testschema cascade;
290
create schema testschema;
291
0 commit comments