Skip to content

Commit

Permalink
Fix broken build due to merging nested options support
Browse files Browse the repository at this point in the history
  • Loading branch information
szeiger committed Oct 15, 2014
1 parent 7925bca commit 0ea777a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/scala/slick/lifted/SimpleFunction.scala
Expand Up @@ -68,7 +68,7 @@ final case class SimpleLiteral(name: String)(val tpe: Type) extends NullaryNode
def nodeRebuild = copy()(tpe)
}
object SimpleLiteral{
def apply[T](name: String)(implicit tpe: TypedType[T]) = Column.forNode[T](new SimpleLiteral(name)(tpe))
def apply[T](name: String)(implicit tpe: TypedType[T]) = Rep.forNode[T](new SimpleLiteral(name)(tpe))
}
/** A SimpleExpression allows arbitrary SQL code to be generated. */
trait SimpleExpression extends Node {
Expand Down

0 comments on commit 0ea777a

Please sign in to comment.