1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Don't test xmin/xmax columns of a postgres_fdw foreign table.

Their values are unspecified and system-dependent.

Per buildfarm member kouprey.
This commit is contained in:
Noah Misch
2014-03-23 03:48:17 -04:00
parent 7cbe57c34d
commit b2b2491b06
2 changed files with 7 additions and 7 deletions

View File

@ -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;