Skip to content

Commit

Permalink
Merge pull request #912 from jsanda/hwkmetrics-750
Browse files Browse the repository at this point in the history
HWKMETRICS-750
  • Loading branch information
John Sanda committed Feb 21, 2018
2 parents 4e1686b + 5dc0987 commit be2ade1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -845,7 +845,7 @@ private Set<TokenRange> getTokenRanges() {
@Override
public Observable<ResultSet> dropTempTable(long timestamp) {
String fullTableName = getTempTableName(timestamp);
String dropCQL = String.format("DROP TABLE %s", fullTableName);
String dropCQL = String.format("DROP TABLE IF EXISTS %s", fullTableName);
return rxSession.execute(dropCQL);
}

Expand Down

0 comments on commit be2ade1

Please sign in to comment.