fix: bug when Null Filtering on embedded resources

When doing Null Filtering, the to-one embed resources were not included if they had a NULL value in any of the selected fields.
This commit is contained in:
Laurence Isla
2023-09-14 21:30:48 -05:00
committed by GitHub
parent 30474c424c
commit fa182c216e
4 changed files with 35 additions and 1 deletions
+10
View File
@@ -3437,3 +3437,13 @@ begin
message = '{"code":"123","message":"ABC","details":"DEF"}';
end
$$;
create table table_a (
id int primary key,
name text
);
create table table_b (
table_a_id int references table_a(id),
name text
);