JackieTien97 opened a new pull request, #14782: URL: https://github.com/apache/iotdb/pull/14782
To replay you can use the following sqls (remember to disable cross_space_compaction) ``` create database db; use db; create table table1(id1 tag, s1 string); insert into table1 values(0, 'd1', null), (1,'d1', 1); flush; insert into table1 values(0, 'd1', 0); flush; select * from table1; ``` previously, you will get duplicate timestamp 0 ``` +-----------------------------+---+----+ | time|id1| s1| +-----------------------------+---+----+ |1970-01-01T08:00:00.000+08:00| d1| 0| |1970-01-01T08:00:00.000+08:00| d1|null| |1970-01-01T08:00:00.001+08:00| d1| 1| +-----------------------------+---+----+ ``` -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
