You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@cassandra.apache.org by Jonathan Ellis <jb...@gmail.com> on 2009/04/20 18:57:42 UTC

change to client API

All column values that were declared `string` in thrift are now
`binary`.  (See https://issues.apache.org/jira/browse/CASSANDRA-29.)

For Java that means byte[] instead of String.

For Python, because thrift treatment of `string` is broken, that
actually means no change -- values were str before and remain str.

I don't know the details of the other thrift generators but it
probably follows one of those two patterns. :)

-Jonathan