Hi I saw that Phoenix can Create a table define Hbase's Versions, An example on phoenix's website is
CREATE TABLE IF NOT EXISTS "my_case_sensitive_table"
( "id" char(10) not null primary key, "value" integer)
DATA_BLOCK_ENCODING='NONE',VERSIONS=5,MAX_FILESIZE=2000000 split on (?,
?, ?)
But I find none version support on with select grammer, so what's the
advantage of defining such a table?
