[ 
https://issues.apache.org/jira/browse/CASSANDRA-10824?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15049633#comment-15049633
 ] 

Robert Stupp commented on CASSANDRA-10824:
------------------------------------------

+1 - just please remove the superfluous {{;}} after the inner classes on commit

> Cast functions do not work properly on Counter columns
> ------------------------------------------------------
>
>                 Key: CASSANDRA-10824
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-10824
>             Project: Cassandra
>          Issue Type: Bug
>          Components: CQL
>            Reporter: Benjamin Lerer
>            Assignee: Benjamin Lerer
>             Fix For: 3.x
>
>         Attachments: 10824-trunk.txt
>
>
> The problem can be reproduced with the following unit test:
> {code}
>     @Test
>     public void testCounterCastsInSelectionClause() throws Throwable
>     {
>         createTable("CREATE TABLE %s (a int primary key, b counter)");
>         execute("UPDATE %s SET b = b + 2 WHERE a = 1");
>         assertRows(execute("SELECT CAST(b AS tinyint), " +
>                 "CAST(b AS smallint), " +
>                 "CAST(b AS int), " +
>                 "CAST(b AS bigint), " +
>                 "CAST(b AS float), " +
>                 "CAST(b AS double), " +
>                 "CAST(b AS decimal), " +
>                 "CAST(b AS ascii), " +
>                 "CAST(b AS text) FROM %s"),
>                    row((byte) 2, (short) 2, 2, 2L, 2.0F, 2.0, 
> BigDecimal.valueOf(2.0), "2", "2"));
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to