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

com.crobox.clickhouse.dsl.column.RandomFunctions.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.{EmptyColumn, ExpressionColumn}

trait RandomFunctions { self: Magnets =>

  abstract class RandomFunction() extends ExpressionColumn[Long](EmptyColumn)

  case class Rand() extends RandomFunction
  case class Rand64() extends RandomFunction

  def rand() = Rand()
  def rand64() = Rand64()
/*
rand
rand64
 */
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy