You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Khurram Faraaz (JIRA)" <ji...@apache.org> on 2015/04/04 09:33:33 UTC

[jira] [Created] (DRILL-2689) Parser does not report missing space between order by and limit keyword

Khurram Faraaz created DRILL-2689:
-------------------------------------

             Summary: Parser does not report missing space between order by <key> and limit keyword
                 Key: DRILL-2689
                 URL: https://issues.apache.org/jira/browse/DRILL-2689
             Project: Apache Drill
          Issue Type: Bug
          Components: SQL Parser
    Affects Versions: 0.9.0
            Reporter: Khurram Faraaz
            Assignee: Aman Sinha
            Priority: Minor


Note that the space between order by <key> and limit keyword is missing, the query is still executed and the missing space is not reported by the parser.

{code}
0: jdbc:drill:> select columns[0] from `allTypData2.csv` order by columns[3]limit 3;
+------------+
|   EXPR$0   |
+------------+
| -2002649798 |
| -31673369  |
| -1777415979 |
+------------+
3 rows selected (0.113 seconds)
0: jdbc:drill:> select columns[0] from `allTypData2.csv` order by columns[3] limit 3;
+------------+
|   EXPR$0   |
+------------+
| -2002649798 |
| -31673369  |
| -1777415979 |
+------------+
3 rows selected (0.119 seconds)
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)