We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9815d85 + f933faa commit 7fb9eabCopy full SHA for 7fb9eab
src/net/sqlcipher/database/SQLiteDatabase.java
@@ -1863,7 +1863,7 @@ public void rawExecSQL(String sql){
1863
// Log commit statements along with the most recently executed
1864
// SQL statement for disambiguation. Note that instance
1865
// equality to COMMIT_SQL is safe here.
1866
- if (sql == COMMIT_SQL) {
+ if (sql.equals(COMMIT_SQL)) {
1867
logTimeStat(mLastSqlStatement, timeStart, COMMIT_SQL);
1868
} else {
1869
logTimeStat(sql, timeStart, null);
0 commit comments