We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent112581e commit3eda599Copy full SHA for 3eda599
contrib/postgres_fdw/expected/postgres_fdw.out
@@ -5329,6 +5329,7 @@ select * from bar where f1 in (select f1 from foo) for update;
5329
Output: bar.f1, bar.f2, bar.ctid, bar.*, bar.tableoid, foo.ctid, foo.*, foo.tableoid
5330
-> Hash Join
5331
5332
+ Inner Unique: true
5333
Hash Cond: (bar.f1 = foo.f1)
5334
-> Append
5335
-> Seq Scan on public.bar
@@ -5347,7 +5348,7 @@ select * from bar where f1 in (select f1 from foo) for update;
5347
5348
-> Foreign Scan on public.foo2
5349
Output: foo2.ctid, foo2.*, foo2.tableoid, foo2.f1
5350
Remote SQL: SELECT f1, f2, f3, ctid FROM public.loct1
-(22 rows)
5351
+(23 rows)
5352
5353
select * from bar where f1 in (select f1 from foo) for update;
5354
f1 | f2