HTHou opened a new pull request, #11844: URL: https://github.com/apache/iotdb/pull/11844
## Description Execute the following sqls ``` insert into root.sg1.factory0.d1.group1(time, s_lat, s_son) aligned values (10,3.3,4.4),(20,13.3,14.4),(30,23.3,24.4),(40,43.3,44.4); insert into root.sg1.factory0.d1.group1(time, s_lat, s_son, s_boolean) aligned values (10,3.3,4.4, true),(20,13.3,14.4, false),(30,23.3,24.4, true),(40,43.3,44.4, true); select * from root.sg1.factory0.d1.group1; delete from root.sg1.factory0.d1.group1.* where time < 30; select * from root.sg1.factory0.d1.group1; ``` The following error will appear. ``` Msg: org.apache.iotdb.jdbc.IoTDBSQLException: 301: Declared positions (2) does not match column 0's number of entries (3) ``` The reason of this bug is when we use rowBitMap to get the information of whether the row is all null, we alway need to getValueIndex method first. -- 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]
