How do you select just the row key in Hypertable's hql?

240 views Asked by At

I have a table in hypertable where the row key is a user id. I wanted to select just the row key itself, but I get parse errors for:

select ROW from users where ROW='1000' limit 5;
Error: Hypertable::Exception: Table= twitter/users , Column family=row - RANGE SERVER invalid column family

Is it possible to just get the row key using hql?

1

There are 1 answers

0
Fabio Mazzo On

USE KEYS_ONLY OPTION:

select * from users where ROW='1000' KEYS_ONLY limit 5;