fix: wrong subquery error returning as 400 status

This commit is contained in:
steve-chavez
2024-05-09 18:56:47 +02:00
committed by Wolfgang Walther
parent 1b0f29a8cc
commit e4984dc751
5 changed files with 18 additions and 3 deletions
+3
View File
@@ -3752,3 +3752,6 @@ create aggregate test.some_agg (some_numbers) (
, sfunc = some_trans
, finalfunc = some_final
);
create view bad_subquery as
select * from projects where id = (select id from projects);