From 3650a7d20c6a8f8505bd46c575b09bdb74b572e9 Mon Sep 17 00:00:00 2001 From: eikek Date: Tue, 7 Sep 2021 22:35:16 +0200 Subject: [PATCH] Make sure DML statements use the correct logger MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It also seems to be necessary now to add the space in the `WHERE`. Normally, the `fr` interpolator would add spaces…. --- modules/store/src/main/scala/docspell/store/qb/DML.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/store/src/main/scala/docspell/store/qb/DML.scala b/modules/store/src/main/scala/docspell/store/qb/DML.scala index 0ba5f072..f448b634 100644 --- a/modules/store/src/main/scala/docspell/store/qb/DML.scala +++ b/modules/store/src/main/scala/docspell/store/qb/DML.scala @@ -8,19 +8,20 @@ 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] = deleteFragment(table, cond).update.run 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) def insert(table: TableDef, cols: Nel[Column[_]], values: Fragment): ConnectionIO[Int] =