Stanislav Hadjiiski created SPARK-11778:
-------------------------------------------
Summary: HiveContext.read.table does not support user-specified
database names
Key: SPARK-11778
URL: https://issues.apache.org/jira/browse/SPARK-11778
Project: Spark
Issue Type: Bug
Affects Versions: 1.5.1
Reporter: Stanislav Hadjiiski
Priority: Minor
If we have defined a HiveContext instance
{quote}
val hiveContext = new org.apache.spark.sql.hive.HiveContext(sparkContext)
{quote}
then
{quote}
hiveContext.table("db_name.table")
{quote}
works but
{quote}
hiveContext.read.table("db_name.table")
{quote}
throws an {{org.apache.spark.sql.catalyst.analysis.NoSuchTableException}}
However,
{quote}
hiveContext.sql("use db_name")
hiveContext.read.table("table")
{quote}
works as expected
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]