diff options
author | Noah Misch <noah@leadboat.com> | 2014-03-23 03:48:17 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-03-23 03:48:17 -0400 |
commit | b2b2491b06074e68fc7c96148cb0fdf0c8eb0469 (patch) | |
tree | 35b67133eb9e114675bc870b08cd2d696de207a3 /contrib/postgres_fdw/sql/postgres_fdw.sql | |
parent | 7cbe57c34dec4860243e6d0f81738cfbb6e5d069 (diff) | |
download | postgresql-b2b2491b06074e68fc7c96148cb0fdf0c8eb0469.tar.gz postgresql-b2b2491b06074e68fc7c96148cb0fdf0c8eb0469.zip |
Don't test xmin/xmax columns of a postgres_fdw foreign table.
Their values are unspecified and system-dependent.
Per buildfarm member kouprey.
Diffstat (limited to 'contrib/postgres_fdw/sql/postgres_fdw.sql')
-rw-r--r-- | contrib/postgres_fdw/sql/postgres_fdw.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/postgres_fdw/sql/postgres_fdw.sql b/contrib/postgres_fdw/sql/postgres_fdw.sql index d47ceca3c11..e11f7d99602 100644 --- a/contrib/postgres_fdw/sql/postgres_fdw.sql +++ b/contrib/postgres_fdw/sql/postgres_fdw.sql @@ -604,5 +604,5 @@ FOR EACH ROW EXECUTE PROCEDURE trig_row_before_insupdate(); INSERT INTO rem1(f2) VALUES ('test'); UPDATE rem1 SET f2 = 'testo'; --- Test returning system attributes -INSERT INTO rem1(f2) VALUES ('test') RETURNING ctid, xmin, xmax; +-- Test returning a system attribute +INSERT INTO rem1(f2) VALUES ('test') RETURNING ctid; |