You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Tomer Shiran (JIRA)" <ji...@apache.org> on 2014/11/16 16:29:33 UTC

[jira] [Created] (DRILL-1726) Query fails when table is not named

Tomer Shiran created DRILL-1726:
-----------------------------------

             Summary: Query fails when table is not named
                 Key: DRILL-1726
                 URL: https://issues.apache.org/jira/browse/DRILL-1726
             Project: Apache Drill
          Issue Type: Bug
            Reporter: Tomer Shiran


The first query failed, and the second succeeded. The only difference was that the field was referred to with the table name b (ie, b.hours.Friday vs. hours.Friday). Both should work.

{code}
0: jdbc:drill:zk=localhost:2181> SELECT name, hours.Friday FROM dfs.root.`Users/tshiran/Development/demo/data/yelp/business.json` b LIMIT 1;
Query failed: Failure while running sql.

Error: exception while executing query: Failure while executing query. (state=,code=0)
0: jdbc:drill:zk=localhost:2181> SELECT name, b.hours.Friday FROM dfs.root.`Users/tshiran/Development/demo/data/yelp/business.json` b LIMIT 1;
+------------+------------+
|    name    |   EXPR$1   |
+------------+------------+
| Eric Goldberg, MD | {"close":"17:00","open":"08:00"} |
+------------+------------+
{code}





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