>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;
>Submitter-Id: xuefer
>Originator: personal
>Organization:
123
>MySQL support: none
>Synopsis: option wrong processed
>Severity: serious
>Priority: medium
>Category: mysql
>Class: sw-bug
>Release: mysql-4.0.1-alpha (Source distribution)
>Environment:
System: Linux test 2.4.9-31 #1 Tue Feb 26 07:11:02 EST 2002 i686 unknown
Architecture: i686
Some paths: /usr/bin/perl /usr/bin/make /usr/bin/gmake /usr/local/bin/gcc /usr/bin/cc
GCC: Reading specs from /usr/local/lib/gcc-lib/i686-pc-linux-gnu/3.0.4/specs
Configured with:
Thread model: single
gcc version 3.0.4
Compilation info: CC='gcc' CFLAGS='-O6 -mcpu=pentiumpro -fomit-frame-pointer'
CXX='c++' CXXFLAGS='-O6 -fomit-frame-pointer -mcpu=pentiumpro
-felide-constructors -fno-exceptions -fno-rtti' LDFLAGS=''
LIBC:
lrwxrwxrwx 1 root root 13 2�� 12 22:08 /lib/libc.so.6 ->
libc-2.2.4.so
-rwxr-xr-x 1 root root 1283964 12�� 8 22:14 /lib/libc-2.2.4.so
-rw-r--r-- 1 root root 27314296 12�� 8 22:02 /usr/lib/libc.a
-rw-r--r-- 1 root root 178 12�� 8 22:02 /usr/lib/libc.so
Configure command: ./configure --prefix=/usr/local/mysql --enable-assembler
--with-mysqld-ldflags=-all-static --disable-shared --with-openssl
--with-default-port=7706 --with-charset=gbk --with-default-character-set=gbk
--with-extra-charsets=none
---------------------------------------------------------------------
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