summaryrefslogtreecommitdiff
path: root/contrib/postgres_fdw
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/postgres_fdw')
-rw-r--r--contrib/postgres_fdw/expected/postgres_fdw.out9
1 files changed, 6 insertions, 3 deletions
diff --git a/contrib/postgres_fdw/expected/postgres_fdw.out b/contrib/postgres_fdw/expected/postgres_fdw.out
index cb74c87d1aa..6dc04e916dc 100644
--- a/contrib/postgres_fdw/expected/postgres_fdw.out
+++ b/contrib/postgres_fdw/expected/postgres_fdw.out
@@ -7159,8 +7159,9 @@ EXPLAIN (VERBOSE, COSTS OFF) SELECT count(*) FROM ft1 WHERE c2 < 0;
Aggregate
Output: count(*)
-> Result
+ Replaces: Scan on ft1
One-Time Filter: false
-(4 rows)
+(5 rows)
SELECT count(*) FROM ft1 WHERE c2 < 0;
count
@@ -7203,8 +7204,9 @@ EXPLAIN (VERBOSE, COSTS OFF) SELECT count(*) FROM ft1 WHERE c2 >= 0;
Aggregate
Output: count(*)
-> Result
+ Replaces: Scan on ft1
One-Time Filter: false
-(4 rows)
+(5 rows)
SELECT count(*) FROM ft1 WHERE c2 >= 0;
count
@@ -8032,8 +8034,9 @@ DELETE FROM rem1 WHERE false; -- currently can't be pushed down
Remote SQL: DELETE FROM public.loc1 WHERE ctid = $1
-> Result
Output: ctid
+ Replaces: Scan on rem1
One-Time Filter: false
-(5 rows)
+(6 rows)
-- Test with statement-level triggers
CREATE TRIGGER trig_stmt_before