Type Members
-
case class
AllExpr() extends PrimitiveExpr with Product with Serializable
-
case class
ArrExpr(elements: List[Expr]) extends BaseExpr with Product with Serializable
-
case class
AssignExpr(variable: String, value: Expr) extends BaseExpr with Product with Serializable
-
-
case class
BinExpr(op: String, lop: Expr, rop: Expr) extends BaseExpr with Product with Serializable
-
case class
BracesExpr(expr: Expr) extends BaseExpr with Product with Serializable
-
case class
ColExpr(col: Expr, alias: String, typ: String, sepQuery: Option[Boolean] = scala.None, hidden: Boolean = false) extends PrimitiveExpr with Product with Serializable
-
case class
ConstExpr(value: Any) extends BaseExpr with Product with Serializable
-
case class
DeleteExpr(table: IdentExpr, alias: String, filter: List[Expr]) extends BaseExpr with Product with Serializable
-
case class
ExternalFunExpr(name: String, params: List[Expr], method: Method) extends BaseExpr with Product with Serializable
-
case class
FunExpr(name: String, params: List[Expr]) extends BaseExpr with Product with Serializable
-
case class
Group(groupExprs: List[Expr], having: Expr) extends PrimitiveExpr with Product with Serializable
-
case class
HiddenColRefExpr(expr: Expr, resType: Class[_]) extends PrimitiveExpr with Product with Serializable
-
case class
IdExpr(seqName: String) extends BaseExpr with Product with Serializable
-
case class
IdRefExpr(seqName: String) extends BaseExpr with Product with Serializable
-
case class
IdentAllExpr(name: List[String]) extends PrimitiveExpr with Product with Serializable
-
case class
IdentExpr(name: List[String]) extends PrimitiveExpr with Product with Serializable
-
case class
InExpr(lop: Expr, rop: List[Expr], not: Boolean) extends BaseExpr with Product with Serializable
-
-
case class
Order(ordExprs: (Null, List[Expr], Null), asc: Boolean) extends PrimitiveExpr with Product with Serializable
-
-
case class
ResExpr(nr: Int, col: Any) extends PrimitiveExpr with Product with Serializable
-
case class
SelectExpr(tables: List[Table], filter: List[Expr], cols: List[ColExpr], distinct: Boolean, group: Expr, order: List[Expr], offset: Expr, limit: Expr, aliases: Map[String, Table], parentJoin: Option[Expr]) extends BaseExpr with Product with Serializable
-
case class
Table(table: Expr, alias: String, join: TableJoin, outerJoin: String, nullable: Boolean) extends PrimitiveExpr with Product with Serializable
-
case class
TableJoin(default: Boolean, expr: Expr, noJoin: Boolean, defaultJoinCols: (List[String], List[String])) extends PrimitiveExpr with Product with Serializable
-
case class
UnExpr(op: String, operand: Expr) extends BaseExpr with Product with Serializable
-
-
case class
VarExpr(name: String, opt: Boolean) extends BaseExpr with Product with Serializable
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
val
COL_CTX: String
-
val
EXTERNAL_FUN_CTX: String
-
val
FUN_CTX: String
-
val
GROUP_CTX: String
-
val
HAVING_CTX: String
-
val
JOIN_CTX: String
-
val
LIMIT_CTX: String
-
val
ORD_CTX: String
-
val
QUERY_CTX: String
-
val
ROOT_CTX: String
-
val
TABLE_CTX: String
-
val
VALUES_CTX: String
-
val
WHERE_CTX: String
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
var
ctxStack: List[String]
-
val
env: Env
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
lazy val
joinsWithChildrenColExprs: Set[ColExpr]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
transform(expr: Expr, f: PartialFunction[Expr, Expr]): Expr
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any