test: spread embed disambiguates recursive m2m
This commit is contained in:
committed by
Steve Chavez
parent
60c0c11c1d
commit
25f65065f4
Vendored
+11
@@ -3026,3 +3026,14 @@ LANGUAGE sql
|
||||
AS $$
|
||||
select * from test.yards;
|
||||
$$;
|
||||
|
||||
create table test.posters(
|
||||
id int primary key,
|
||||
name text
|
||||
);
|
||||
|
||||
create table test.subscriptions(
|
||||
subscriber int references test.posters(id),
|
||||
subscribed int references test.posters(id),
|
||||
primary key(subscriber, subscribed)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user