Skip to content

Commit

Permalink
[query] fix issue where executeUpdateDelete() calls wrong method to r…
Browse files Browse the repository at this point in the history
…etrieve database. #1087
  • Loading branch information
agrosner committed Dec 11, 2016
1 parent b83ea61 commit f45a7c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public FlowQueryList<TModel> flowQueryList() {

@Override
public long executeUpdateDelete() {
return executeUpdateDelete(FlowManager.getWritableDatabase(getTable()));
return executeUpdateDelete(FlowManager.getWritableDatabaseForTable(getTable()));
}

@Override
Expand Down

0 comments on commit f45a7c6

Please sign in to comment.