This is an automated email from the ASF dual-hosted git repository.

chaow pushed a commit to branch rel/0.12
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/rel/0.12 by this push:
     new 0459d85  [To rel/0.12][ISSUE-3309] Fix InsertRecordsOfOneDevice runs 
too slow (#3313)
0459d85 is described below

commit 0459d85184d121da4318a34d48027573216b44a4
Author: Haonan <[email protected]>
AuthorDate: Wed Jun 2 13:17:42 2021 +0800

    [To rel/0.12][ISSUE-3309] Fix InsertRecordsOfOneDevice runs too slow (#3313)
---
 .../apache/iotdb/db/qp/physical/crud/InsertRowsOfOneDevicePlan.java    | 3 ---
 1 file changed, 3 deletions(-)

diff --git 
a/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/InsertRowsOfOneDevicePlan.java
 
b/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/InsertRowsOfOneDevicePlan.java
index 8886688..15f667b 100644
--- 
a/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/InsertRowsOfOneDevicePlan.java
+++ 
b/server/src/main/java/org/apache/iotdb/db/qp/physical/crud/InsertRowsOfOneDevicePlan.java
@@ -47,9 +47,6 @@ public class InsertRowsOfOneDevicePlan extends InsertPlan 
implements BatchPlan {
     this.deviceId = deviceId;
     rowPlans = new InsertRowPlan[insertTimes.length];
     for (int i = 0; i < insertTimes.length; i++) {
-      for (ByteBuffer b : insertValues) {
-        b.toString();
-      }
       rowPlans[i] =
           new InsertRowPlan(
               deviceId,

Reply via email to