Hi,

I started thrift server
cd $SPARK_HOME
./sbin/start-thriftserver.sh

Then, jdbc client
$ ./bin/beeline
Beeline version 1.5.2 by Apache Hive
beeline>!connect jdbc:hive2://ip:10000
show tables;
+------------+--------------+--+
| tableName  | isTemporary  |
+------------+--------------+--+
| check      | false        |
| test       | false        |
+------------+--------------+--+
5 rows selected (0.126 seconds)
>

It shows table that are persisted on hive metastore using saveAsTable.
Temp table (registerTempTable) can't able to view

Can any1 help me with this,
Thanks

Reply via email to