test: fix hello function for pg 9.6

This commit is contained in:
steve-chavez
2023-06-02 17:45:25 -05:00
committed by Steve Chavez
parent 9a3d453bf4
commit 54b9a0b8b3
+1 -1
View File
@@ -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);