Skip to content

Commit

Permalink
Merge pull request #217 from DSL-UMD/distributed
Browse files Browse the repository at this point in the history
[FIX] remove itself
  • Loading branch information
gangliao authored Oct 1, 2019
2 parents c03a4f2 + a0dbf1a commit a3f128e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions voltdb/BatchRemoveINodes.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public class BatchRemoveINodes extends VoltProcedure {
public long run(long[] ids) throws VoltAbortException {
List<Long> set = new ArrayList<>();
for (int i = 0; i < ids.length; ++i) {
voltQueueSQL(sql2, id);
set.add(ids[i]);
}

Expand Down
1 change: 1 addition & 0 deletions voltdb/RemoveChild.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public class RemoveChild extends VoltProcedure {
public long run(long id) throws VoltAbortException {
List<Long> set = new ArrayList<>();
set.add(id);
voltQueueSQL(sql2, id);

int i = 0;
while (i < set.size()) {
Expand Down

0 comments on commit a3f128e

Please sign in to comment.