Hi,
In spark-shell, I registered a temp table and
scala> hc.sql("show tables").show()
+-------------------------+----------------+
| tableName|isTemporary|
+-------------------------+----------------+
| test | true|
|check | false|
+-------------------------+-----------------+
I started a spark thrift server and connected using
jdbc client
$ ./bin/beeline
beeline> !connect jdbc:hive2://IP:10015
beeline> show tables;
+-----------------------------+--------------+--+
| tableName | isTemporary |
+-----------------------------+--------------+--+
| check | false |
+-----------------------------+--------------+--+
I can't see the temp table, can someone help me with this
Thanks