summaryrefslogtreecommitdiff
path: root/contrib/file_fdw/output/file_fdw.source
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/file_fdw/output/file_fdw.source')
-rw-r--r--contrib/file_fdw/output/file_fdw.source2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/file_fdw/output/file_fdw.source b/contrib/file_fdw/output/file_fdw.source
index e2d8b870158..b92392fd25e 100644
--- a/contrib/file_fdw/output/file_fdw.source
+++ b/contrib/file_fdw/output/file_fdw.source
@@ -344,6 +344,8 @@ SELECT tableoid::regclass, * FROM p2;
INSERT INTO pt VALUES (1, 'xyzzy'); -- ERROR
ERROR: cannot route inserted tuples to a foreign table
INSERT INTO pt VALUES (2, 'xyzzy');
+UPDATE pt set a = 1 where a = 2; -- ERROR
+ERROR: cannot route inserted tuples to a foreign table
SELECT tableoid::regclass, * FROM pt;
tableoid | a | b
----------+---+-------