Skip to content

Commit

Permalink
add semicolons to function outout
Browse files Browse the repository at this point in the history
  • Loading branch information
djrobstep committed Oct 30, 2018
1 parent 00c03a0 commit ef9ea3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/FIXTURES/everything/expected.sql
Expand Up @@ -121,7 +121,7 @@ AS $function$
END;

$function$

;

CREATE OR REPLACE FUNCTION public.changed(i integer, t text[])
RETURNS TABLE(a text, c integer)
Expand All @@ -134,7 +134,7 @@ AS $function$
END;

$function$

;

create materialized view "public"."matvvv" as SELECT 2;

Expand Down
4 changes: 2 additions & 2 deletions tests/FIXTURES/everything/expected2.sql
Expand Up @@ -117,7 +117,7 @@ AS $function$
END;

$function$

;

CREATE OR REPLACE FUNCTION public.changed(i integer, t text[])
RETURNS TABLE(a text, c integer)
Expand All @@ -130,7 +130,7 @@ AS $function$
END;

$function$

;

create materialized view "public"."matvvv" as SELECT 2;

Expand Down

0 comments on commit ef9ea3d

Please sign in to comment.