HyperTable Select on Column qualifier does not work in 0.9.6.5 as documented -


my table schema below:

hypertable> show create table users;                           create table group_commit_interval "100" users (                  'column_name_beta' max_versions 1,                                                                               access group audience ('column_name_beta'),                                    )                                                              data looks this, when do, 'select * users'  1000            column_name_beta:80069355         1000000038      column_name_beta:26090761 100000008       column_name_beta:16589206 1000000112      column_name_beta:5536782 

so, question is, when do: select column_name_beta:80069355 users;

it returns no rows. why? have tried single quote, double quotes et all. please help. per documentation here, http://hypertable.com/documentation/reference_manual/hql#select::column qualifier predicate, should work? doing wrong?

based on read https://groups.google.com/forum/#!msg/hypertable-user/ilblgiiwh68/a2twzispkjcj, tried,

select column_name_beta:'80069355' users; 

and worked.


Comments