I have a tweet table in HBase,Please find below it's description using hbase describe tweet
{NAME => 'tweets', DATA_BLOCK_ENCODING => 'NONE', BLOOMFILTER => 'ROW', REPLICAT
ION_SCOPE => '0', COMPRESSION => 'GZ', VERSIONS => '1', TTL => 'FOREVER', MIN_VE
RSIONS => '0', KEEP_DELETED_CELLS => 'FALSE', BLOCKSIZE => '65536', IN_MEMORY =>
'false', BLOCKCACHE => 'true'}
and created it's corresponding view in Phoenix as
CREATE VIEW "tweets" ( pk VARCHAR PRIMARY KEY,"tweets".fromuser VARCHAR );
But when i do Select * from "tweets"
,I can see only primary keys,fromuser column data is empty ,same thing happens when i do
select fromuser from "tweets"