All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.getquill.context.sql.idiom.OffsetWithoutLimitWorkaround.scala Maven / Gradle / Ivy

package io.getquill.context.sql.idiom

import io.getquill.ast.Ast
import io.getquill.NamingStrategy
import io.getquill.util.Show.Shower

trait OffsetWithoutLimitWorkaround {
  self: SqlIdiom =>

  override protected def showOffsetWithoutLimit(offset: Ast)(implicit strategy: NamingStrategy) =
    s" LIMIT 18446744073709551610 OFFSET ${offset.show}"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy