You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Brandon Williams (JIRA)" <ji...@apache.org> on 2014/04/24 17:42:18 UTC

[jira] [Assigned] (CASSANDRA-7081) select writetime(colname) returns 0 for static columns

     [ https://issues.apache.org/jira/browse/CASSANDRA-7081?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Brandon Williams reassigned CASSANDRA-7081:
-------------------------------------------

    Assignee: Sylvain Lebresne

> select writetime(colname) returns 0 for static columns
> ------------------------------------------------------
>
>                 Key: CASSANDRA-7081
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7081
>             Project: Cassandra
>          Issue Type: Bug
>            Reporter: Nicolas Favre-Felix
>            Assignee: Sylvain Lebresne
>
> Selecting the write time for a static column returns 0 in Cassandra 2.0 (c3550fe) and an expected timestamp in 2.1 (trunk, acdbbb9). Would it be possible to include this timestamp in a 2.0 release too?
> {code}
> > CREATE TABLE test (partition_key text, cluster_key text, data text, st text static, PRIMARY KEY(partition_key, cluster_key));
> > INSERT INTO test (partition_key, cluster_key, data, st) VALUES ( 'PK', 'CK', 'DATA', 'ST');
> > SELECT writetime(st), writetime(data) FROM test where partition_key='PK';
>  writetime(st) | writetime(data)
> ---------------+------------------
>              0 | 1398314681729000
> (1 rows)
> {code}



--
This message was sent by Atlassian JIRA
(v6.2#6252)