You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2019/06/23 02:21:17 UTC

[incubator-iotdb] branch feature_async_close_tsfile updated: fix delete bug

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

qiaojialin pushed a commit to branch feature_async_close_tsfile
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/feature_async_close_tsfile by this push:
     new 3644510  fix delete bug
     new 3d333be  Merge remote-tracking branch 'origin/feature_async_close_tsfile' into feature_async_close_tsfile
3644510 is described below

commit 36445100c950eea8c1b7faf51dda00c99ab9d1bf
Author: qiaojialin <64...@qq.com>
AuthorDate: Sun Jun 23 10:20:53 2019 +0800

    fix delete bug
---
 iotdb/src/test/java/org/apache/iotdb/db/qp/utils/MemIntQpExecutor.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/iotdb/src/test/java/org/apache/iotdb/db/qp/utils/MemIntQpExecutor.java b/iotdb/src/test/java/org/apache/iotdb/db/qp/utils/MemIntQpExecutor.java
index dc28363..a7ef642 100644
--- a/iotdb/src/test/java/org/apache/iotdb/db/qp/utils/MemIntQpExecutor.java
+++ b/iotdb/src/test/java/org/apache/iotdb/db/qp/utils/MemIntQpExecutor.java
@@ -91,8 +91,7 @@ public class MemIntQpExecutor extends QueryProcessExecutor {
   public boolean processNonQuery(PhysicalPlan plan) throws ProcessorException {
     switch (plan.getOperatorType()) {
       case DELETE:
-        DeletePlan delete = (DeletePlan) plan;
-        return delete(delete.getPaths(), delete.getDeleteTime());
+        return delete((DeletePlan) plan);
       case UPDATE:
         UpdatePlan update = (UpdatePlan) plan;
         boolean flag = true;