Hi Sven,
On Tue, 2010-09-28 at 09:11 +0200, Sven Sandberg wrote:
> Hi Luís,
>
> Thanks for fixing this. One typo, and since you fix the indentation for
> some lines, please fix the whole block of wrongly indented code. I think
> you can handle that without another round of reviews: Patch approved!
>
> /Sven
>
>
> Luis Soares wrote:
> [...]
> > === modified file 'sql/share/errmsg-utf8.txt'
> > --- a/sql/share/errmsg-utf8.txt 2010-06-07 08:47:04 +0000
> > +++ b/sql/share/errmsg-utf8.txt 2010-09-27 16:34:13 +0000
> > +
> > +ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MIN
> > + eng "The value for the heartbeat period is less than 1 milisecond. The period
> is reset to 0, meaning that heartbeating will effectively be disabled."
>
> millisecond, two L
Right. Sorry!
> > +
> > +ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE_MAX
> > + eng "The value for the heartbeat period exceeds the value of
> `slave_net_timeout' seconds. A sensible value for the period should be less than the
> timeout."
> >
> > === modified file 'sql/sql_yacc.yy'
> > --- a/sql/sql_yacc.yy 2010-09-01 13:12:42 +0000
> > +++ b/sql/sql_yacc.yy 2010-09-27 16:34:13 +0000
> > @@ -1935,32 +1935,25 @@ master_def:
> > if (Lex->mi.heartbeat_period > SLAVE_MAX_HEARTBEAT_PERIOD ||
> > Lex->mi.heartbeat_period < 0.0)
> > {
> > - const char format[]= "%d seconds";
> > - char buf[4*sizeof(SLAVE_MAX_HEARTBEAT_PERIOD) + sizeof(format)];
> > - sprintf(buf, format, SLAVE_MAX_HEARTBEAT_PERIOD);
> > - my_error(ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE,
> > - MYF(0), " is negative or exceeds the maximum ", buf);
> > + const char format[]= "%d";
> > + char buf[4*sizeof(SLAVE_MAX_HEARTBEAT_PERIOD) + sizeof(format)];
> > + sprintf(buf, format, SLAVE_MAX_HEARTBEAT_PERIOD);
> > + my_error(ER_SLAVE_HEARTBEAT_VALUE_OUT_OF_RANGE, MYF(0), buf);
> > MYSQL_YYABORT;
> > }
>
> Good that you fix the indentation. Since you're editing this section,
> can you also fix the three lines above?
Sure.
Regards,
Luís