[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
ACOS()
, ASIN()
. (Bug #2338)
The cause of the problem is an overly strong optimization done by gcc
in this case.
INSERT ... SELECT
statements where, if a NOT NULL
column is assigned a value of NULL
, the following columns in the row
might be assigned a value of zero. (Bug #2012)
replicate-ignore-table
and other similar rules), the slave
still checked if the query got the same error code (0, no error) as on
the master. So if the master had an error on the query (for example,
"Duplicate entry" in a multiple-row insert), then the slave stopped
and warned that the error codes didn't match. This is a backport of the
fix for MySQL 4.0. (Bug #797)
mysqlbinlog
now asks for a password at console when the
-p/--password
option is used with no argument. This is how the
other clients (mysqladmin
, mysqldump
..) already
behave. Note that one now has to use mysqlbinlog -p<my_password>
;
mysqlbinlog -p <my_password>
will not work anymore (in other
words, put no space after -p
). (Bug #1595)
ALTER TABLE RENAME
, when rename to the table with
the same name in another database silently dropped destination table if
it existed. (Bug #2628)