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:
Vendored
+10
@@ -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
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user