Re: Custom data type is not work at C* 2.0

2013-09-05 Thread Dave Brosius
I think your class is missing a required public TypeSerializerVoid getSerializer() {} method This is what you need to derive from

Re: Custom data type is not work at C* 2.0

2013-09-05 Thread Katsutoshi
Thanks to your reply, this problem has been solved. I was making a mistake which uses AbstractType of a version 1.2.9. 2013/9/6 Dave Brosius dbros...@mebigfatguy.com I think your class is missing a required public TypeSerializerVoid getSerializer() {} method This is what you need to

Custom data type is not work at C* 2.0

2013-09-04 Thread Katsutoshi
Hi. I would like to use custom data type. Although it was work at Cassandra 1.2.9, but it is not work at Cassandra 2.0.0. Did anything change by Cassandra 2.0.0 ? My test procedure is as follows: ### DummyType.class ``` package my.marshal; import java.nio.ByteBuffer; import