fix merge

This commit is contained in:
Jaremy Creechley 2023-09-27 13:12:32 -07:00
parent a4f0c48392
commit 1fd80c6f2b
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
2 changed files with 1 additions and 2 deletions

View File

@ -204,7 +204,7 @@ method put*[BT](self: ThreadDatastore[BT],
return ctx[].res.toRes()
method put*[DB](
self: ThreadDatastore,
self: ThreadDatastore[DB],
batch: seq[BatchEntry]): Future[?!void] {.async.} =
## put batch data
for entry in batch:

View File

@ -63,7 +63,6 @@ for i in 1..N:
key = Key.init("/a/b").tryGet()
bytes = "some bytes".toBytes
otherBytes = "some other bytes".toBytes
setup:
sqlStore = newSQLiteBackend[KeyId, DataBuffer](Memory).tryGet()