Details

    • Type: Bug
    • Status: Open
    • Priority: Major
    • Resolution: Unresolved
    • Affects Version/s: 10.0.14
    • Fix Version/s: 10.0
    • Component/s: None
    • Labels:

      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

            There are no comments yet on this issue.

              People

              • Assignee:
                psergey Sergei Petrunia
                Reporter:
                RalfNeubauer Ralf Neubauer
              • Votes:
                0 Vote for this issue
                Watchers:
                2 Start watching this issue

                Dates

                • Created:
                  Updated: