HI, I started a hive thrift server from hive home, ./bin/hiveserver2
opened jdbc client,
./bin/beeline
connected to thrift server,
0: > show tables;
+------------------------+--+
| tab_name |
+------------------------+--+
| check |
| people |
+------------------------+--+
4 rows selected (2.085 seconds)
0:>
I can't see the temp tables which i registered with HiveContext
from pyspark.sql import HiveContext, Row
schemaPeople.registerTempTable("testtemp")
Can some1 help me with it
Thanks
