Accept regression diff in timestamptz test case
authorPavan Deolasee <[email protected]>
Wed, 28 Jun 2017 09:14:20 +0000 (14:44 +0530)
committerPavan Deolasee <[email protected]>
Wed, 28 Jun 2017 09:14:20 +0000 (14:44 +0530)
The change is simply an addition of a Remote FQS node on top the SeqScan.

src/test/regress/expected/timestamptz.out

index 5b21f848fd5b7833f0bd3d0f8b63b893e248e2df..9afbcbd4d7a81c3f390da12e7b874b8343813dfd 100644 (file)
@@ -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