Details
-
Bug
-
Status: Resolved
-
Normal
-
Resolution: Fixed
-
None
-
None
-
Normal
Description
Just a quick note on static columns, if you create some cql rows using clustered columns and don't provide a value for a static column, then selecting the row key with the (null) static column won't return any rows.
create table statictest( a int, b text static, c text, PRIMARY KEY (a, c));
insert into statictest (a, c) values (1, 'test');
select a,b from statictest;
(0 rows)
Attachments
Attachments
Issue Links
- is duplicated by
-
CASSANDRA-7277 CQL support for select distinct part_key,static_field from table
- Resolved
- is related to
-
CASSANDRA-7449 Variation of SELECT DISTINCT to find clustering keys with only static columns
- Resolved