flyingsand008 opened a new issue #2256:
URL: https://github.com/apache/iotdb/issues/2256


   **To Reproduce**
   Steps to reproduce the behavior:
   1. in sync sender
   insert into root.ln.wf01.wt01(timestamp,temperature) values(2020-11-01 
00:00:00.000,21.113817)
   insert into root.ln.wf01.wt01(timestamp,temperature) values(2020-11-02 
00:00:00.000,20.653296)
   flush
   2. after sync
    in sync sender
   insert into root.ln.wf01.wt01(timestamp,temperature) values(2020-11-04 
00:00:00.000,24.588139)
   flush
   IoTDB> select * from root.ln.wf01.wt01
   +-----------------------------+-----------------------------+
   |                         Time|root.ln.wf01.wt01.temperature|
   +-----------------------------+-----------------------------+
   |2020-11-01T00:00:00.000+08:00|                    21.113817|
   |2020-11-02T00:00:00.000+08:00|                    20.653296|
   |2020-11-04T00:00:00.000+08:00|                    24.588139|
   +-----------------------------+-----------------------------+
   IoTDB> select last * from root.ln.wf01.wt01
   +-----------------------------+-----------------------------+---------+
   |                         Time|                   timeseries|    value|
   +-----------------------------+-----------------------------+---------+
   |2020-11-04T00:00:00.000+08:00|root.ln.wf01.wt01.temperature|24.588139|
   +-----------------------------+-----------------------------+---------+
   3. after sync
   in sync receiver
   IoTDB> select * from root.ln.wf01.wt01
   +-----------------------------+-----------------------------+
   |                         Time|root.ln.wf01.wt01.temperature|
   +-----------------------------+-----------------------------+
   |2020-11-01T00:00:00.000+08:00|                    21.113817|
   |2020-11-02T00:00:00.000+08:00|                    20.653296|
   |2020-11-04T00:00:00.000+08:00|                    24.588139|
   +-----------------------------+-----------------------------+
   IoTDB> select last * from root.ln.wf01.wt01
   +-----------------------------+-----------------------------+---------+
   |                         Time|                   timeseries|    value|
   +-----------------------------+-----------------------------+---------+
   |2020-11-02T00:00:00.000+08:00|root.ln.wf01.wt01.temperature|20.653296|
   +-----------------------------+-----------------------------+---------+
   
   **Expected behavior**
   in sync receiver
   IoTDB> select last * from root.ln.wf01.wt01
   +-----------------------------+-----------------------------+---------+
   |                         Time|                   timeseries|    value|
   +-----------------------------+-----------------------------+---------+
   |2020-11-04T00:00:00.000+08:00|root.ln.wf01.wt01.temperature|24.588139|
   +-----------------------------+-----------------------------+---------+
   
   **Desktop (please complete the following information):**
    - Version 0.11.0


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to