From: Pavan Deolasee Date: Wed, 28 Jun 2017 09:14:20 +0000 (+0530) Subject: Accept regression diff in timestamptz test case X-Git-Tag: XL_10_R1BETA1~263 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=83ce29b63697945addbfda89ce970629d7bde25d;p=postgres-xl.git Accept regression diff in timestamptz test case The change is simply an addition of a Remote FQS node on top the SeqScan. --- diff --git a/src/test/regress/expected/timestamptz.out b/src/test/regress/expected/timestamptz.out index 5b21f848fd..9afbcbd4d7 100644 --- a/src/test/regress/expected/timestamptz.out +++ b/src/test/regress/expected/timestamptz.out @@ -2500,11 +2500,13 @@ create temp table tmptz (f1 timestamptz primary key); insert into tmptz values ('2017-01-18 00:00+00'); explain (costs off) select * from tmptz where f1 at time zone 'utc' = '2017-01-18 00:00'; - QUERY PLAN -------------------------------------------------------------------------------------------------- - Seq Scan on tmptz - Filter: (timezone('utc'::text, f1) = 'Wed Jan 18 00:00:00 2017'::timestamp without time zone) -(2 rows) + QUERY PLAN +------------------------------------------------------------------------------------------------------- + Remote Fast Query Execution + Node/s: datanode_1, datanode_2 + -> Seq Scan on tmptz + Filter: (timezone('utc'::text, f1) = 'Wed Jan 18 00:00:00 2017'::timestamp without time zone) +(4 rows) select * from tmptz where f1 at time zone 'utc' = '2017-01-18 00:00'; f1