From 54b9a0b8b3508acb7c02c4c8403d1e5b709b934b Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Fri, 2 Jun 2023 17:17:15 -0500 Subject: [PATCH] test: fix hello function for pg 9.6 --- test/io/fixtures.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/io/fixtures.sql b/test/io/fixtures.sql index 88d4f3ff29..61cf777020 100644 --- a/test/io/fixtures.sql +++ b/test/io/fixtures.sql @@ -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);