Zhong Wang created IOTDB-1632:
---------------------------------
Summary: Value fill function fills even when the data exists
Key: IOTDB-1632
URL: https://issues.apache.org/jira/browse/IOTDB-1632
Project: Apache IoTDB
Issue Type: Bug
Reporter: Zhong Wang
To reproduce:
{code:java}
create timeseries root.ln.wf01.wt01.temperature with datatype=FLOAT,encoding=RLE
insert into root.ln.wf01.wt01(timestamp,temperature) values(1598337848000,33.0)
select temperature from root.ln.wf01.wt01 where
time=2020-08-25T14:44:08.000+08:00;select temperature from root.ln.wf01.wt01
where time=2020-08-25T14:44:08.000+08:00 fill(float[1.0]);
{code}
Expected results:
{code:java}
33.0
33.0
{code}
Actual results:
{code:java}
33.0
1.0
{code}
I will fix this issue.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)