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

com.crobox.clickhouse.dsl.column.ScalaBooleanFunctions.scala Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package com.crobox.clickhouse.dsl.column

import com.crobox.clickhouse.dsl.{isEqual, Const, TableColumn}
import com.crobox.clickhouse.dsl.marshalling.QueryValueFormats._

trait ScalaBooleanFunctions {
  self: Magnets with ComparisonFunctions =>

  trait ScalaBooleanFunctionOps {
    self: ConstOrColMagnet[_] =>

    def isFalse: TableColumn[Boolean] = isEqual(self, Const(false))

    def isTrue: TableColumn[Boolean] = isEqual(self, Const(true))
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy