cli not picking up type annotation on set
-----------------------------------------
Key: CASSANDRA-1635
URL: https://issues.apache.org/jira/browse/CASSANDRA-1635
Project: Cassandra
Issue Type: Bug
Components: Tools
Affects Versions: 0.7.0
Reporter: Jonathan Ellis
Assignee: Pavel Yaskevich
Fix For: 0.7.0
{code}
[defa...@keyspace1] create column family Users
create column family Users
737c7a71-dc56-11df-8240-e700f669bcfc
[defa...@keyspace1] set Users[jsmith][first] = 'John'
set Users[jsmith][first] = 'John'
Value inserted.
[defa...@keyspace1] set Users[jsmith][last] = 'Smith'
set Users[jsmith][last] = 'Smith'
Value inserted.
[defa...@keyspace1] set Users[jsmith][age] = long(42)
set Users[jsmith][age] = long(42)
Value inserted.
[defa...@keyspace1] get Users[jsmith]
get Users[jsmith]
=> (column=6c617374, value=Smith, timestamp=1287584999695000)
=> (column=6669727374, value=John, timestamp=1287584990126000)
=> (column=616765, valu...@^@^...@^@^...@^@^...@*, timestamp=1287585014593000)
Returned 3 results.
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.