Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.3.3, 1.4.2, 1.5.3, 1.6.0, 1.7.0
Description
The following expression throws an exception in parsing "id.asc" term.
Table allOrders = orderTable .select("id,order_date,amount,customer_id") .orderBy("id.asc");
while it is correctly parsed for Scala:
val allOrders:Table = orderTable
.select('id, 'order_date, 'amount, 'customer_id)
.orderBy('id.asc)
Anticipated some inconsistency between ExpressionParser and ExpressionDsl
Attachments
Issue Links
- links to