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,19 +8,20 @@ package docspell.store.qb
import cats.data.{NonEmptyList => Nel} import cats.data.{NonEmptyList => Nel}
import docspell.store.impl.DoobieMeta
import docspell.store.qb.impl._ import docspell.store.qb.impl._
import doobie._ import doobie._
import doobie.implicits._ import doobie.implicits._
object DML { object DML extends DoobieMeta {
private val comma = fr"," private val comma = fr","
def delete(table: TableDef, cond: Condition): ConnectionIO[Int] = def delete(table: TableDef, cond: Condition): ConnectionIO[Int] =
deleteFragment(table, cond).update.run deleteFragment(table, cond).update.run
def deleteFragment(table: TableDef, cond: Condition): Fragment = def deleteFragment(table: TableDef, cond: Condition): Fragment =
fr"DELETE FROM" ++ FromExprBuilder.buildTable(table) ++ fr"WHERE" ++ ConditionBuilder fr"DELETE FROM" ++ FromExprBuilder.buildTable(table) ++ fr" WHERE" ++ ConditionBuilder
.build(cond) .build(cond)
def insert(table: TableDef, cols: Nel[Column[_]], values: Fragment): ConnectionIO[Int] = def insert(table: TableDef, cols: Nel[Column[_]], values: Fragment): ConnectionIO[Int] =