Navis created HIVE-3051: --------------------------- Summary: JDBC cannot find metadata for tables/columns containing uppercase character Key: HIVE-3051 URL: https://issues.apache.org/jira/browse/HIVE-3051 Project: Hive Issue Type: Improvement Components: JDBC Affects Versions: 0.10.0 Reporter: Navis Assignee: Navis Priority: Trivial
{code} create table TEST_TABLE ( ... ); ... ResultSet rs = databaseMetaData.getColumns(null, null, "TEST_TABLE", null); // empty {code} Trivial, but hive shell or thrift client accepts above use-case by converting strings to lower case. This should be consistent with JDBC. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira