mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 12:19:54 +00:00
* core: update simplexmq (avoid deleting shared message bodies) * simplexmq, plans * simplexmq * output in failing test * stabilize test
12 lines
343 B
Haskell
12 lines
343 B
Haskell
module ChatTests.DBUtils.SQLite where
|
|
|
|
import Database.SQLite.Simple (Query)
|
|
import Simplex.Messaging.Agent.Store.SQLite.DB
|
|
import Simplex.Messaging.TMap (TMap)
|
|
|
|
data TestParams = TestParams
|
|
{ tmpPath :: FilePath,
|
|
printOutput :: Bool,
|
|
chatQueryStats :: TMap Query SlowQueryStats,
|
|
agentQueryStats :: TMap Query SlowQueryStats
|
|
}
|