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.
1 parent 620682a commit aecd036Copy full SHA for aecd036
Sources/Basics/SQLiteBackedCache.swift
@@ -119,7 +119,7 @@ public final class SQLiteBackedCache<Value: Codable>: Closable {
119
}
120
121
public func remove(key: Key) throws {
122
- let query = "DELETE FROM \(self.tableName) WHERE key = ? LIMIT 1;"
+ let query = "DELETE FROM \(self.tableName) WHERE key = ?;"
123
try self.executeStatement(query) { statement in
124
try statement.bind([.string(key)])
125
try statement.step()
0 commit comments