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 > I think your class is missing a required > > public TypeSerializer getSerializer() {} > > method > > > This is what you need to derive from > > > https

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 TypeSerializer getSerializer() {} method This is what you need to derive from https://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=blob;f=src/java/org/apache/cassandra/db/marshal/AbstractType.java;h=74fe446319c199433b47d3ae60fc4d644e86b653;

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 org.apache.cassand