Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Cassandra Wiki" for change notification.
The "ThriftExamples" page has been changed by PeterSankauskas.
The comment on this change is: Fixing typo - was "name" when it should have been "value".
http://wiki.apache.org/cassandra/ThriftExamples?action=diff&rev1=81&rev2=82
--------------------------------------------------
ConsistencyLevel.ONE).getColumn();
System.out.println("column name: " + new String(col.name, UTF8));
- System.out.println("column name: " + new String(col.value, UTF8));
+ System.out.println("column value: " + new String(col.value, UTF8));
System.out.println("column timestamp: " + new Date(col.timestamp));
// read entire row
|