fix: wrong subquery error returning as 400 status

This commit is contained in:
steve-chavez
2024-02-02 22:08:56 -05:00
committed by Steve Chavez
parent bbc0bda6f5
commit 45cabacdcc
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);