- 24 Jun, 2009 1 commit
-
-
Sergey Vojtovich authored
-
- 18 Jun, 2009 1 commit
-
-
Sergey Vojtovich authored
-
- 17 Jun, 2009 3 commits
-
-
Vladislav Vaintroub authored
-
Vladislav Vaintroub authored
It used to be declared as ulint, which is 32/64 bit integer depending on OS bitness. However this declaration lead to problems with os_compare_and_swap_thread_id implementation which operated on 32 bit integers (InterlockedCompareExchange) Using 64 bit int lead to wrong result in os_compare_and_swap_thread_id and to crash/assertion in rw_lock_set_writer_id_and_recursion_flag() The fix is to use 4 byte integer to os_thread_id type definition.
-
Sergey Vojtovich authored
zlib headers in wrong location. Fixed by using path exported by zlib.m4 macro.
-
- 11 Jun, 2009 3 commits
-
-
Sergey Vojtovich authored
-
Satya B authored
the mysql test suite. Tests removed: 1. innodb_trx_weight.test 2. innodb_bug35220.test Include files removed: 1. have_innodb.inc 2. ctype_innodb_like.inc 3. innodb_trx_weight.inc Also add the missing opt file for the test innodb-use-sys-malloc.test
-
Satya B authored
-
- 10 Jun, 2009 3 commits
-
-
Sergey Vojtovich authored
option doesn't affect innodb_plugin. Currently it works as following: * configure without relevant options producing two dynamic plugins * configure --with-plugin-innodb (or legacy --with-innodb) producing static standard InnoDB * configure --without-plugin-innodb (or legacy --without-innodb) disabling standard InnoDB * configure --with-plugin-innodb_plugin producing dynamic innodb_plugin * configure --without-plugin-innodb_plugin disabling innodb_plugin
-
Satya B authored
Created a test suite 'innodb' under mysql-test/suite/innodb for the innodb plugin tests. test suite 'innodb' has tests only which are not under any other mysql-test suites. Total 14 testcases are added to the test suite. Note: the patches in storage/innodb_plugin/mysql-test/patches are not applied yet
-
Vladislav Vaintroub authored
Remove custom DLL loader code from innodb plugin code, use symbols exported from mysqld.
-
- 09 Jun, 2009 1 commit
-
-
Tomas Ulin authored
-
- 05 Jun, 2009 2 commits
-
-
Satya B authored
change tree name to 'mysql-5.1-innodb_plugin'
-
Bjorn Munch authored
-
- 03 Jun, 2009 1 commit
-
-
Bjorn Munch authored
Let the user specify 'auto' for parallel value Also set --parallel=auto in default.push so we can get this tested.
-
- 02 Jun, 2009 1 commit
-
-
Bjorn Munch authored
Added calls to mtr_report_stats() also after timeout or too many failures
-
- 29 May, 2009 3 commits
-
-
Satya B authored
The Innodb plugin 1.0.4 can be installed dynamically using the 'INSTALL PLUGIN' syntax If mysqld is already statically linked with the inbuilt innodb, it is not possible to install the innodb plugin 1.0.4 dynamically. Doing so would throw this error - Function 'innodb' already exists.
-
Bjorn Munch authored
-
Bjorn Munch authored
-
- 28 May, 2009 3 commits
-
-
Bjorn Munch authored
Adding "w# " before the test result Also enable --parallel=2 so this can be tested.
-
Georgi Kodinov authored
-
Georgi Kodinov authored
-
- 27 May, 2009 9 commits
-
-
Bjorn Munch authored
-
Georgi Kodinov authored
-
Georgi Kodinov authored
-
Sergey Glukhov authored
-
Sergey Glukhov authored
On 64-bit Windows: querying MERGE table with keys may cause server crash.The problem is generic and may affect any statement accessing MERGE table cardinality values. When MERGE engine was copying cardinality statistics, it was using incorrect size of element in cardinality statistics array (sizeof(ptr)==8 instead of sizeof(ulong)==4), causing access of memory beyond of the allocated bounds.
-
Satya B authored
-
Satya B authored
-
Bjorn Munch authored
Protected '' in connect command with ""
-
Sergey Glukhov authored
The fix is to allow myisamchk to use >4G key_buffer_size on win64
-
- 26 May, 2009 2 commits
-
-
timothy.smith@sun.com authored
-
Bjorn Munch authored
Incorrection assumption about delimiter character in connection command
-
- 25 May, 2009 5 commits
-
-
Bjorn Munch authored
-
Staale Smedseng authored
doesn't find 'logger' Due to a variable quoting mistake, the $PATH environment variable isn't parsed correctly when searching for the existence of the desired executable(s) (logger in this case). This patch removes the quotes.
-
Bjorn Munch authored
check_command_args() always looks for the first , (or whatever) Extended check_command_args() to let arguments be quoted Added test in mysqltest.test
-
Davi Arnaut authored
The problem is that the server failed to follow the rule that every X509 object retrieved using SSL_get_peer_certificate() must be explicitly freed by X509_free(). This caused a memory leak for builds linked against OpenSSL where the X509 object is reference counted -- improper counting will prevent the object from being destroyed once the session containing the peer certificate is freed. The solution is to explicitly free every X509 object used.
-
Georgi Kodinov authored
HAVING When calculating GROUP BY the server caches some expressions. It does that by allocating a string slot (Item_copy_string) and assigning the value of the expression to it. This effectively means that the result type of the expression can be changed from whatever it was to a string. As this substitution takes place after the compile-time result type calculation for IN but before the run-time type calculations, it causes the type calculations in the IN function done at run time to get unexpected results different from what was prepared at compile time. In the CASE ... WHEN ... THEN ... statement there was a similar problem and it was solved by artificially adding a STRING argument to the set of types of the IN/CASE arguments at compile time, so if any of the arguments of the CASE function changes its type to a string it will still be covered by the information prepared at compile time.
-
- 23 May, 2009 1 commit
-
-
Davi Arnaut authored
-
- 22 May, 2009 1 commit
-
-
Luis Soares authored
-