Skip to content

Commit

Permalink
test: fix hello function for pg 9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-chavez committed Jun 2, 2023
1 parent 9a3d453 commit 54b9a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/io/fixtures.sql
Expand Up @@ -90,7 +90,7 @@ create or replace function sleep(seconds double precision) returns void as $$
$$ language sql;

create or replace function hello() returns text as $$
select 'hello';
select 'hello'::text;
$$ language sql;

create table cats(id uuid primary key, name text);
Expand Down

0 comments on commit 54b9a0b

Please sign in to comment.