Make sure DML statements use the correct logger

It also seems to be necessary now to add the space in the `WHERE`.
Normally, the `fr` interpolator would add spaces….
This commit is contained in:
eikek 2021-09-07 22:35:16 +02:00
parent e943b4c60d
commit 3650a7d20c

View File

@ -8,12 +8,13 @@ package docspell.store.qb
import cats.data.{NonEmptyList => Nel}
import docspell.store.impl.DoobieMeta
import docspell.store.qb.impl._
import doobie._
import doobie.implicits._
object DML {
object DML extends DoobieMeta {
private val comma = fr","
def delete(table: TableDef, cond: Condition): ConnectionIO[Int] =