[
https://issues.apache.org/jira/browse/FLINK-10172?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Fabian Hueske closed FLINK-10172.
---------------------------------
Resolution: Fixed
Fix Version/s: 1.3.3
1.5.4
1.7.0
1.6.1
1.4.3
Fixed for 1.7.0 with 12bae25d56ca16380a724dcd15028da49c2d653e
Fixed for 1.6.1 with b6d8fb941fb3c3f2346b02d5afbd87573e4a48bb
Fixed for 1.5.4 with a25a241c48027ba6178605af8e1112e2e27ed259
Fixed for 1.4.3 with 7b34a03e678a565fe7c028b669b0417b06d23456
Fixed for 1.3.3 with d3c206efc7b0b0612cb3d4c9d8272ffed8841f52
> Inconsistentcy in ExpressionParser and ExpressionDsl for order by asc/desc
> --------------------------------------------------------------------------
>
> Key: FLINK-10172
> URL: https://issues.apache.org/jira/browse/FLINK-10172
> Project: Flink
> Issue Type: Bug
> Components: Table API & SQL
> Affects Versions: 1.3.3, 1.4.2, 1.5.3, 1.6.0, 1.7.0
> Reporter: Rong Rong
> Assignee: Rong Rong
> Priority: Major
> Labels: pull-request-available
> Fix For: 1.4.3, 1.6.1, 1.7.0, 1.5.4, 1.3.3
>
>
> The following expression throws an exception in parsing {{"id.asc"}} term.
> {code:java}
> Table allOrders = orderTable
> .select("id,order_date,amount,customer_id")
> .orderBy("id.asc");
> {code}
> while it is correctly parsed for Scala:
> {code:scala}
> val allOrders:Table = orderTable
> .select('id, 'order_date, 'amount, 'customer_id)
> .orderBy('id.asc)
> {code}
> Anticipated some inconsistency between ExpressionParser and ExpressionDsl
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)