fix: null filtering on embed when column=relation
This commit is contained in:
committed by
Steve Chavez
parent
2977d09779
commit
2d00d7d248
Vendored
+21
@@ -3308,3 +3308,24 @@ CREATE TABLE bitchar_with_length (
|
||||
bit bit(5),
|
||||
char char(5)
|
||||
);
|
||||
|
||||
--- https://github.com/PostgREST/postgrest/issues/2862
|
||||
create table profiles (
|
||||
id uuid primary key,
|
||||
username text null
|
||||
);
|
||||
|
||||
create table user_friend (
|
||||
id bigint primary key,
|
||||
user1 uuid references profiles (id),
|
||||
user2 uuid references profiles (id)
|
||||
);
|
||||
|
||||
create table status(
|
||||
id bigint primary key
|
||||
);
|
||||
|
||||
create table tournaments(
|
||||
id bigint primary key,
|
||||
status bigint references status(id)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user