Nicolas Favre-Felix created CASSANDRA-7081:
----------------------------------------------
Summary: 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
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)