[
https://issues.apache.org/jira/browse/CASSANDRA-19894?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17879194#comment-17879194
]
Brandon Williams edited comment on CASSANDRA-19894 at 9/4/24 11:29 AM:
-----------------------------------------------------------------------
Yes, it looks like we should throw an error here since a vector of counters
doesn't make any sense.
was (Author: brandon.williams):
Yes, it looks like we should throw and error here since a vector of counters
doesn't make any sense.
> Vectors of counter as subtype do not work as expected
> -----------------------------------------------------
>
> Key: CASSANDRA-19894
> URL: https://issues.apache.org/jira/browse/CASSANDRA-19894
> Project: Cassandra
> Issue Type: Bug
> Components: Feature/Vector Search
> Reporter: Jane He
> Priority: Normal
> Fix For: 5.0.x
>
>
> Here is the current behavior:
> {code:java}
> cqlsh:default> create table counter_table ( i int PRIMARY KEY, j
> vector<counter,2> );
> cqlsh:default> insert into counter_table (i, j) values (0, [0,0]);
> cqlsh:default> select * from counter_table;
> i | j
> ---+----------------------------------------
> 0 | [576460752303423488, 2251799813685248]
> (1 rows) {code}
> We may want vectors to handle `counter` subtype as other collections do,
> which is throwing an error:
> {code:java}
> cqlsh:cycling> create table upcoming_calendar ( year int, month int, events
> list<counter>, primary key (year, month));
> InvalidRequest: Error from server: code=2200 [Invalid query]
> message="Counters are not allowed inside collections: list<counter>"
> cqlsh:cycling> create table upcoming_calendar ( year int, month int, events
> map<int, counter>, primary key (year, month));
> InvalidRequest: Error from server: code=2200 [Invalid query]
> message="Counters are not allowed inside collections: map<int, counter>"
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]