[EMAIL PROTECTED] writes:
> >Description:
>       enable-reads-from-master and repl-parse-query is mixed 
> >How-To-Repeat:
>       .............
> >Fix:
>       line 839:
>               case 22: /* enable-reads-from-master */
>                 options->rpl_parse = 1;
>                 break;
>               case 23: /* repl-parse-query */
>                 options->no_master_reads = 0;
>                 break;
>       
>       should be:
>               case 22: /* enable-reads-from-master */
>                 options->no_master_reads = 0;
>                 break;
>               case 23: /* repl-parse-query */
>                 options->rpl_parse = 1;
>                 break;
>       
>       or change "static const char *default_options[]=......"
>       and those comments;

Hi!

Thank you for spotting this.

-- 
Regards,
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Mr. Sinisa Milivojevic <[EMAIL PROTECTED]>
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB, Fulltime Developer
/_/  /_/\_, /___/\___\_\___/   Larnaca, Cyprus
       <___/   www.mysql.com


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to