I have an existing hbase table with 50k columns. Can we create a view in phoenix by mapping to an existing hbase table without specifying the schema of all 50k columns.
Something like: Create view myview (pk varchar primary key) as select * from hbasetable For all columns to be available in my view without specifying schema of all 50k columns.
