test: no empty tx started for invalid path/method

This commit is contained in:
steve-chavez
2022-07-15 22:23:33 -05:00
committed by Steve Chavez
parent 23e4c7fe6e
commit df49f482dc
3 changed files with 38 additions and 2 deletions
+8
View File
@@ -78,3 +78,11 @@ create function reload_pgrst_config() returns void as $_$
begin
perform pg_notify('pgrst', 'reload config');
end $_$ language plpgsql ;
create or replace function sleep(seconds double precision) returns void as $$
select pg_sleep(seconds);
$$ language sql;
create or replace function hello() returns text as $$
select 'hello';
$$ language sql;