- 28 Feb, 2006 5 commits
-
-
tomas@poseidon.ndb.mysql.com authored
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new
-
tomas@poseidon.ndb.mysql.com authored
- code wrongly tries to do a "fast alter partition", although not supported
-
tomas@poseidon.ndb.mysql.com authored
- too little space was allocated for receiving events, partition uses extra column in table
-
tomas@poseidon.ndb.mysql.com authored
- error string wrongly formatted
-
holyfoot@deer.(none) authored
-
- 27 Feb, 2006 19 commits
-
-
brian@zim.(none) authored
into zim.(none):/home/brian/mysql/dep-5.1
-
brian@zim.(none) authored
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.1-merges2
-
dlenev@mysql.com authored
bug #13525 "Rename table does not keep info of triggers". Now we use MYSQLTEST_VARDIR in order to be able to run this test in different vardir. Also improved cleanup after the test.
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.1-merges2
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.1-merges2
-
dlenev@mysql.com authored
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.0-bg13525
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.0-bg13525
-
SergeyV@selena. authored
into selena.:H:/MYSQL/src/#15943-mysql-5.0
-
sergefp@mysql.com authored
into mysql.com:/home/psergey/mysql-5.0-bug17314-push
-
tomas@poseidon.ndb.mysql.com authored
-
mats@mysql.com authored
-
tomas@poseidon.ndb.mysql.com authored
-
SergeyV@selena. authored
-
msvensson@neptunus.(none) authored
- Set FD_SETSIZE before including "sys/select.h"
-
sergefp@mysql.com authored
into mysql.com:/home/psergey/mysql-5.0-bug17314
-
mats@mysql.com authored
into mysql.com:/home/bk/fix-mysql-5.1-release
-
bar@mysql.com authored
xml.result: Adding test for Bug #16312 XML: extractvalue() crash if angle brackets, A fix for #16234 fixed this bug automatically.
-
- 26 Feb, 2006 13 commits
-
-
msvensson@neptunus.(none) authored
-
monty@mysql.com authored
into mysql.com:/home/my/mysql-5.1
-
guilhem@mysql.com authored
-
msvensson@neptunus.(none) authored
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
-
msvensson@neptunus.(none) authored
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.0-bg13525
-
dlenev@mysql.com authored
after merging fix for it with main tree.
-
monty@mysql.com authored
Don't run upgrade.test with embedded server as it requires mysqlcheck
-
dlenev@mysql.com authored
into mysql.com:/home/dlenev/src/mysql-5.0-bg13525
-
monty@mysql.com authored
into mysql.com:/home/my/mysql-5.1
-
monty@mysql.com authored
-
brian@zim.(none) authored
into zim.(none):/home/brian/mysql/dep-5.1
-
brian@zim.(none) authored
This patch handles compiles with threads, namely if you don't have pthreads it will remove support for threads in the applications (and it is fixed in such a way that tests won't break).
-
- 25 Feb, 2006 3 commits
-
-
guilhem@mysql.com authored
-
guilhem@mysql.com authored
into mysql.com:/home/mysql_src/mysql-5.1-new
-
guilhem@mysql.com authored
and new binlog format called "mixed" (which is statement-based except if only row-based is correct, in this cset it means if UDF or UUID is used; more cases could be added in later 5.1 release): SET GLOBAL|SESSION BINLOG_FORMAT=row|statement|mixed|default; the global default is statement unless cluster is enabled (then it's row) as in 5.1-alpha. It's not possible to use SET on this variable if a session is currently in row-based mode and has open temporary tables (because CREATE TEMPORARY TABLE was not binlogged so temp table is not known on slave), or if NDB is enabled (because NDB does not support such change on-the-fly, though it will later), of if in a stored function (see below). The added tests test the possibility or impossibility to SET, their effects, and the mixed mode, including in prepared statements and in stored procedures and functions. Caveats: a) The mixed mode will not work for stored functions: in mixed mode, a stored function will always be binlogged as one call and in a statement-based way (e.g. INSERT VALUES(myfunc()) or SELECT myfunc()). b) for the same reason, changing the thread's binlog format inside a stored function is refused with an error message. c) the same problems apply to triggers; implementing b) for triggers will be done later (will ask Dmitri). Additionally, as the binlog format is now changeable by each user for his session, I remove the implication which was done at startup, where row-based automatically set log-bin-trust-routine-creators to 1 (not possible anymore as a user can now switch to stmt-based and do nasty things again), and automatically set --innodb-locks-unsafe-for-binlog to 1 (was anyway theoretically incorrect as it disabled phantom protection). Plus fixes for compiler warnings.
-