Cassandra 3.11.4 CQL GROUP BY Не работает - PullRequest
1 голос
/ 21 мая 2019

Я мог бы упустить что-то очень простое, или что-то очень неправильно; Я использую Apache Cassandra 3.11.4. Подробности версии:

Connected to Test Cluster at 127.0.0.1:9042.
[cqlsh 5.0.1 | Cassandra 3.7.0 | CQL spec 3.4.2 | Native protocol v4]

У меня есть следующая таблица, и я хочу получить информацию об индивидуальном статусе гражданства.

CREATE TABLE population.residents (
residentId bigint,
name varchar,
office varchar,
dob date,
citizen text,
PRIMARY KEY((residentId), dob)
);

CREATE MATERIALIZED VIEW population.residents_citizen AS
    SELECT citizen, dob, residentid, name, office
    FROM population.residents
    WHERE citizen IS NOT NULL AND residentid IS NOT NULL AND dob IS NOT NULL
    PRIMARY KEY (citizen, dob, residentid);

При попытке сделать запрос появляется следующая ошибка:

cqlsh> select citizen, count(residentId) from population.residents_citizen GROUP BY citizen;
SyntaxException: line 1:68 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen [GROUP] BY...)
cqlsh> select citizen, count(residentId) from population.residents_citizen_1 
GROUP BY citizen, residentId;
SyntaxException: line 1:70 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen_1 [GROUP] BY...)
cqlsh> select citizen, count(residentId) from population.residents_citizen_1 GROUP BY residentId, citizen;
SyntaxException: line 1:70 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen_1 [GROUP] BY...)
cqlsh> select citizen, count(residentId) from population.residents_citizen_1 GROUP BY citizen, dob, residentId;
SyntaxException: line 1:70 missing EOF at 'GROUP' (...(residentId) from population.residents_citizen_1 [GROUP] BY...)

Мои данные выглядят так, как показано ниже:

cqlsh> select * from population.residents;

 residentid | dob        | citizen | name              | office
------------+------------+---------+-------------------+----------------------------------------
      25966 | 2019-01-04 |       N |        Carl Sykes |              Leo Cras Vehicula Limited
     921412 | 2018-12-13 |       N |    Brady Harrison |          Nulla In Tincidunt Consulting
     521367 | 2019-11-18 |       Y |      Aaron Norton |      Pharetra Sed Hendrerit Associates
     843096 | 2020-02-03 |       N |      Preston Leon |                        A Felis Limited
     460162 | 2019-01-17 |       N |      Neville Good |                   Odio Aliquam Company
     187360 | 2018-12-09 |       Y |     Emery Pittman |                Arcu Ac Orci Foundation

Некоторые советы действительно приветствуются!

...