Details
Description
in storage/cassandra/cassandra_se.cc in bzr repository http://bazaar.launchpad.net/~maria-captains/maria/10.0/ revision 4362:
void Cassandra_se_impl::set_consistency_levels(unsigned long read_cons_level, unsigned long write_cons_level) { write_cons_level= (ConsistencyLevel::type)(write_cons_level + 1); read_cons_level= (ConsistencyLevel::type)(read_cons_level + 1); }
should possibly be
void Cassandra_se_impl::set_consistency_levels(unsigned long read_cons_level, unsigned long write_cons_level) { write_consistency= (ConsistencyLevel::type)(write_cons_level + 1); read_consistency= (ConsistencyLevel::type)(read_cons_level + 1); }
because these are the instance attributes that are actually used in the cass->... method calls.
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions