OrderByExpression
data class OrderByExpression(val expression: ScalarExpression<*>, val orderType: OrderType, val isLeafNode: Boolean = false, val extraProperties: Map<String, Any> = emptyMap()) : SqlExpression(source)
Order-by expression.
Properties
Link copied to clipboard
the sorting column, might be a ColumnExpression or other scalar expression types.
Link copied to clipboard
Extra properties of this expression, maybe useful in SqlFormatter to generate some special SQLs.
Link copied to clipboard
Check if this expression is a leaf node in expression trees.