1

我在超表中有一个表,其中行键是用户 ID。我想只选择行键本身,但出现以下解析错误:

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

是否可以使用 hql 获取行键?

4

1 回答 1

3

使用 KEYS_ONLY 选项:

select * from users where ROW='1000' KEYS_ONLY limit 5;
于 2014-03-07T19:41:37.993 回答