acurtis/antony@ltamd64.xiphis.org
9ed3da2c12
Merge xiphis.org:/anubis/antony/work/mysql-5.0-engines
...
into xiphis.org:/anubis/antony/work/merge.20080220/mysql-5.0
2008-02-20 22:42:24 -08:00
svoj@mysql.com/june.mysql.com
921e1cc4bb
BUG#34289 - Incorrect NAME_CONST substitution in stored procedures
...
breaks replication
NAME_CONST() didn't replicate constant character set and collation
correctly.
With this fix NAME_CONST() inherits collation from the value argument.
2008-02-19 18:16:17 +04:00
istruewing@stella.local
b620694ba3
Merge stella.local:/home2/mydev/mysql-5.0-amain
...
into stella.local:/home2/mydev/mysql-5.0-axmrg
2008-02-15 20:06:15 +01:00
istruewing@stella.local
6c977025df
Merge stella.local:/home2/mydev/mysql-5.0-ateam
...
into stella.local:/home2/mydev/mysql-5.0-axmrg
2008-02-14 20:24:01 +01:00
istruewing@stella.local
b6c8f8a58b
Merge stella.local:/home2/mydev/mysql-5.0-amain
...
into stella.local:/home2/mydev/mysql-5.0-axmrg
2008-02-14 16:14:30 +01:00
istruewing@stella.local
d00dbff4ce
Merge stella.local:/home2/mydev/mysql-5.0-ateam
...
into stella.local:/home2/mydev/mysql-5.0-axmrg
2008-02-14 16:13:51 +01:00
svoj@mysql.com/april.(none)
7fa875e42b
BUG#33946 - Join on Federated tables with Unique index gives error 1430
...
from storage engine
Federated may crash a server, return wrong result set, return
"ERROR 1030 (HY000): Got error 1430 from storage engine" message
when local (engine=federated) table has a key against nullable
column.
The problem was wrong implementation of function that creates
WHERE clause for remote query from key.
2008-02-14 16:27:01 +04:00
ramil/ram@mysql.com/ramil.myoffice.izhnet.ru
a64d12ce3a
Fix for bug #33758 : Got query result when using ORDER BY ASC, but
...
empty result when using DESC
Problem: fetching MyISAM keys we copy a key block pointer to the end of the key buffer.
However, we don't take into account the pointer length calculatig the buffer size,
that may leads to memory overwriting and in turn to unpredictable results.
Fix: increase key buffer size by length of the key block pointer.
Note: no simple test case.
2008-02-12 15:12:45 +04:00
tomas@poseidon.ndb.mysql.com
a4d8864b5e
Merge poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-rpl-merge
...
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2008-02-12 11:22:07 +01:00
mkindahl@dl145h.mysql.com
23d670c33e
Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0
...
into dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl-merge
2008-02-11 18:09:17 +01:00
tomas@poseidon.ndb.mysql.com
3103c2fb8c
Merge poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-ndb
...
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2008-02-11 17:37:25 +01:00
istruewing@stella.local
21534505d0
Merge stella.local:/home2/mydev/mysql-5.0-amain
...
into stella.local:/home2/mydev/mysql-5.0-axmrg
2008-02-11 11:19:06 +01:00
mkindahl@dl145h.mysql.com
525a324a77
Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl
...
into dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl-merge
2008-02-11 09:42:28 +01:00
kostja@dipika.(none)
0e4b6ea058
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
...
into dipika.(none):/opt/local/work/mysql-5.0-runtime
2008-02-08 18:51:07 +03:00
davi@mysql.com/endora.local
24b9abf36d
Bug#33798 prepared statements improperly handle large unsigned ints
...
The unsignedness of large integer user variables was not being
properly preserved when feeded to prepared statements. This was
happening because the unsigned flags wasn't being updated when
converting the user variable is converted to a parameter.
The solution is to copy the unsigned flag when converting the
user variable to a parameter and take the unsigned flag into
account when converting the integer to a string.
2008-02-08 08:55:55 -02:00
kostja@dipika.(none)
bf7991ba2f
Fix compile warning about undefined rmdir() function.
2008-02-07 23:52:30 +03:00
msvensson@pilot.mysql.com
04ca458fcb
Merge pilot.mysql.com:/data/msvensson/mysql/bug31004/my50-bug31004
...
into pilot.mysql.com:/data/msvensson/mysql/mysql-5.0-runtime
2008-02-07 12:42:49 +01:00
sven@riska.(none)
ad316c259e
Replace windows path separator backslash by unix path separator forward
...
slash in filenames also for Create_file_log_event.
2008-02-06 20:55:12 +01:00
mskold/marty@mysql.com/quadfish.(none)
859bc1d0fc
Added random sleeps before retrying temporarly failed DICT signals, to avoid race conditions
2008-02-06 15:08:45 +01:00
jperkin/mysqldev@mysql.com/production.mysql.com
21487efe0a
Raise version number after cloning 5.0.56
2008-02-06 14:18:26 +01:00
tomas@whalegate.ndb.mysql.com
1fa870fa88
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2008-02-06 11:42:18 +01:00
aelkin/elkin@koti.dsl.inet.fi
51b33ea35d
Bug #34305 show slave status handling segfaults when slave io is about
...
to leave
The artifact was caused by
a flaw in concurrent accessing the slave's io thd by
the io itself and a handling show slave status thread.
Namely, show_master_info did not acquire mi->run_lock mutex that is
specified for mi->io_thd member.
Fixed with deploying the mutex locking and unlocking. The mutex is kept
short time and without interleaving with mi->data_lock mutex.
Todo: to report and fix an issue with
sys_var_slave_skip_counter::{methods}
seem to acquire incorrectly
active_mi->rli.run_lock
instead of the specified
active_mi->rli.data_lock
A test case is difficult to compose, so rpl_packet should continue serving
as the indicator.
2008-02-05 17:36:26 +02:00
pekka@sama.ndb.mysql.com
ab547213ad
ndb - some warnings, debug errors
2008-02-04 13:46:35 +01:00
mkindahl@dl145h.mysql.com
69fdf6794a
Updating result file.
2008-02-04 13:19:29 +01:00
mkindahl@dl145h.mysql.com
ed698cf596
Fixes to make rpl_user test pass in pushbuild.
2008-02-04 12:22:37 +01:00
pekka@sama.ndb.mysql.com
2920f9298a
bug#34169 - fix pthread_t abuse
2008-02-04 09:23:56 +01:00
cbell/Chuck@mysql_cab_desk.
1ab703f093
Merge cbell@bk-internal.mysql.com:/home/bk/mysql-5.0-rpl-merge
...
into mysql_cab_desk.:D:/source/c++/mysql-5.0-rpl-merge
2008-02-01 14:01:21 -05:00
cbell/Chuck@mysql_cab_desk.
7db07f95fb
BUG#32205 : Replaying statements from mysqlbinlog fails with a syntax error, replicates fine
...
This patch adds code to convert the path for LOAD DATA INFILE
events to a Unix path which is needed for running mysql client
on Windows.
2008-02-01 13:11:03 -05:00
mkindahl@dl145h.mysql.com
e00096a1a7
Again blanking out some numbers in file names that is dependent
...
on the context.
2008-02-01 17:26:28 +01:00
mkindahl@dl145h.mysql.com
4f7ad14be0
Fixes to make tests pass in pushbuild.
2008-02-01 15:34:34 +01:00
mkindahl@dl145h.mysql.com
294571f083
Various fixes to make tests pass on Windows.
2008-02-01 13:18:27 +01:00
mkindahl@dl145h.mysql.com
15b74eb7bf
Changes to make tests pass on vanilla build.
2008-02-01 10:46:02 +01:00
pekka@sama.ndb.mysql.com
256f6e31d8
ndb - bug#34107 - ndb api test case
2008-01-31 23:15:07 +01:00
mkindahl@dl145h.mysql.com
7cfdd60045
Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0
...
into dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl-merge
2008-01-31 16:15:46 +01:00
svoj@mysql.com/april.(none)
3b5c25ba65
BUG#22989 - START SLAVE causes Error on COM_REGISTER_SLAVE: 1105
...
'Wrong parameters to functi
START SLAVE reports vague error when it fails to register on master:
"Wrong parameters to function register_slave".
If master failed to register slave because of too long
'report-host'/'report-user'/'report-password', return better error
messages:
"Failed to register slave: too long 'report-host'"
"Failed to register slave: too long 'report-user'"
"Failed to register slave; too long 'report-password'"
No test case for this fix.
2008-01-31 18:51:20 +04:00
pekka@sama.ndb.mysql.com
e2f23fb8d9
Merge sama.ndb.mysql.com:/export/space/pekka/ndb/version/my50-ndb
...
into sama.ndb.mysql.com:/export/space/pekka/ndb/version/my50-bug34107
2008-01-31 14:24:10 +01:00
pekka@sama.ndb.mysql.com
2b78957875
ndb - bug#34107 patch 2, ndb api
2008-01-31 13:58:29 +01:00
pekka@sama.ndb.mysql.com
ccb79bb8ee
ndb - bug#34107 patch 1, kernel
2008-01-31 13:56:12 +01:00
mkindahl@dl145h.mysql.com
10b194d272
Changes to fix tests in pushbuild.
2008-01-31 12:17:40 +01:00
mkindahl@dl145h.mysql.com
b8428d1560
Fixes to make code compile on Windows.
2008-01-31 07:19:29 +01:00
mkindahl@dl145h.mysql.com
b9b38cb576
Disabling rpl_transaction test for non-debug builds.
2008-01-30 18:24:28 +01:00
mkindahl@dl145h.mysql.com
a440007ca4
Changes to make tests pass in pushbuild.
2008-01-30 15:58:35 +01:00
tomas@whalegate.ndb.mysql.com
4c77586d5c
Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0
...
into whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb-merge
2008-01-30 15:36:46 +01:00
jonas@perch.ndb.mysql.com
f16b8a1931
ndb - bug#34160
...
make sure release of not added ptr does not corrupt hashtable
2008-01-30 11:58:10 +01:00
mkindahl@dl145h.mysql.com
716c63ebaa
Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl
...
into dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl-merge
2008-01-30 11:25:54 +01:00
hezx@mail.hezx.com
afe8ac3128
Merge zhe@bk-internal.mysql.com:/home/bk/mysql-5.0-rpl
...
into mail.hezx.com:/media/sda3/work/mysql/bkwork/bug26489_corruption_in_relay_log/5.0
2008-01-30 16:40:36 +08:00
jonas@perch.ndb.mysql.com
4230b1b53e
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0-ndb
...
into perch.ndb.mysql.com:/home/jonas/src/50-ndb
2008-01-30 08:10:37 +01:00
jonas@perch.ndb.mysql.com
0c03b509eb
ndb - bug#30172
...
Backup can assert with "big" table definitions
Correct condition before fetching next meta-table
Increase meta-buffer, to cope with atleast 2 tables
2008-01-30 08:09:56 +01:00
hezx@mail.hezx.com
7572a9e391
update test result
2008-01-29 19:21:21 +08:00
istruewing@stella.local
252dcbe8d0
Merge stella.local:/home2/mydev/mysql-5.0-amain
...
into stella.local:/home2/mydev/mysql-5.0-axmrg
2008-01-29 10:14:28 +01:00