Rahul Challapalli created DRILL-736:
---------------------------------------
Summary: describe command in drill has issues when working with
hive tables with same name under different databases
Key: DRILL-736
URL: https://issues.apache.org/jira/browse/DRILL-736
Project: Apache Drill
Issue Type: Bug
Reporter: Rahul Challapalli
>From hive issue the below commands :
create table t1 (col1 string);
create database test;
use test;
create table t1 (col2 int);
>From drill :
describe t1;
+-------------+------------+-------------+
| COLUMN_NAME | DATA_TYPE | IS_NULLABLE |
+-------------+------------+-------------+
| col1 | VARCHAR | NO |
| col2 | INTEGER | NO |
+-------------+------------+-------------+
--
This message was sent by Atlassian JIRA
(v6.2#6252)