buyingyi | ce18ebf | 2012-11-29 00:02:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Description : This test case is to verify the fix for issue55 query 1 |
| 3 | : https://code.google.com/p/asterixdb/issues/detail?id=55 |
| 4 | * Expected Res : Success |
| 5 | * Date : 26th November 2012 |
| 6 | */ |
| 7 | |
buyingyi | 7d7c0b4 | 2012-11-25 06:09:46 +0000 | [diff] [blame] | 8 | write output to nc1:"rttest/open-closed_query-issue55-1.adm"; |
| 9 | |
| 10 | let $l := [1.1f, 1.0f, 1.2f, 0.9, 1.3, 1, 2] |
| 11 | for $i in $l |
| 12 | for $j in $l |
| 13 | return [$i, $j, "=", $i = $j, "<", $i < $j, "<=", $i <= $j, ">", $i > $j, ">=", $i >= $j] |