Author: jbellis
Date: Tue Dec 27 19:12:39 2011
New Revision: 1224981
URL: http://svn.apache.org/viewvc?rev=1224981&view=rev
Log:
make avro bloom_filter_fp_chance default to null
patch by yukim; reviewed by jbellis for CASSANDRA-3497
Modified:
cassandra/branches/cassandra-1.0/src/avro/internode.genavro
Modified: cassandra/branches/cassandra-1.0/src/avro/internode.genavro
URL:
http://svn.apache.org/viewvc/cassandra/branches/cassandra-1.0/src/avro/internode.genavro?rev=1224981&r1=1224980&r2=1224981&view=diff
==============================================================================
--- cassandra/branches/cassandra-1.0/src/avro/internode.genavro (original)
+++ cassandra/branches/cassandra-1.0/src/avro/internode.genavro Tue Dec 27
19:12:39 2011
@@ -71,7 +71,7 @@ protocol InterNode {
union { null, string } compaction_strategy = null;
union { null, map<string> } compaction_strategy_options = null;
union { null, map<string> } compression_options = null;
- union { double, null } bloom_filter_fp_chance;
+ union { null, double } bloom_filter_fp_chance = null;
}
@aliases(["org.apache.cassandra.config.avro.KsDef"])