fix: fix wrong http status on pg error 42P17 infinite recursion
This commit is contained in:
committed by
Wolfgang Walther
parent
903537d39d
commit
077e4a857e
Vendored
+7
@@ -3768,3 +3768,10 @@ create aggregate test.outfunc_agg (anyelement) (
|
||||
, stype = "pg/outfunc"
|
||||
, sfunc = outfunc_trans
|
||||
);
|
||||
|
||||
-- https://github.com/PostgREST/postgrest/issues/3256
|
||||
create view test.infinite_recursion as
|
||||
select * from test.projects;
|
||||
|
||||
create or replace view test.infinite_recursion as
|
||||
select * from test.infinite_recursion;
|
||||
|
||||
Reference in New Issue
Block a user