- 01 Jul, 2005 1 commit
-
-
msvensson@neptunus.(none) authored
-
- 27 Jun, 2005 5 commits
-
-
marko@hundin.mysql.fi authored
-
marko@hundin.mysql.fi authored
up CREATE TABLE in innodb_file_per_table=1 mode.
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
into neptunus.(none):/home/msvensson/mysql/mysql-4.1
-
- 24 Jun, 2005 3 commits
-
-
ingo@mysql.com authored
Moved the key statistics update to info(). The table is not locked in open(). This made wrong stats possible. No test case for the test suite. This happens only with heavy concurrency. A test script is added to the bug report.
-
ramil@mysql.com authored
-
ramil@mysql.com authored
-
- 23 Jun, 2005 16 commits
-
-
timour@mysql.com authored
into mysql.com:/home/timka/mysql/src/4.1-virgin
-
msvensson@neptunus.(none) authored
into neptunus.(none):/home/msvensson/mysql/mysql-4.1
-
timour@mysql.com authored
into mysql.com:/home/timka/mysql/src/4.1-virgin
-
kent@mysql.com authored
into mysql.com:/Users/kent/mysql/bk/mysql-4.1
-
sergefp@mysql.com authored
into mysql.com:/home/psergey/mysql-4.1-bug10151
-
evgen@moonbone.local authored
Fix for fix for bug #9728 Error caused server hang on prepared insert ... select
-
kent@mysql.com authored
Might need a restart after test with special TZ Removed unused argument to run_mysqltest()
-
sergefp@mysql.com authored
into mysql.com:/home/psergey/mysql-4.1-bug10151
-
msvensson@neptunus.(none) authored
into neptunus.(none):/home/msvensson/mysql/mysql-4.1
-
timour@mysql.com authored
into mysql.com:/home/timka/mysql/src/4.1-virgin
-
lenz@mysql.com authored
into mysql.com:/space/my/mysql-4.1
-
lenz@mysql.com authored
-
lenz@mysql.com authored
-
sergefp@mysql.com authored
into mysql.com:/home/psergey/mysql-4.1-bug10151
-
timour@mysql.com authored
into mysql.com:/home/timka/mysql/src/4.1-bug-11185
-
timour@mysql.com authored
The source of the problem is in Field_longlong::cmp. If 'this' is an unsigned number, the method casts both the current value, and the constant that we compare with to an unsigned number. As a result if the constant we compare with is a negative number, it wraps to some unsigned number, and the comparison is incorrect. When the optimizer chooses the "range" access method, this problem causes handler::read_range_next to reject the current key when the upper bound key is a negative number because handler::compare_key incorrectly considers the positive and negative keys to be equal. The current patch does not correct the source of the problem in Field_longlong::cmp because it is not easy to propagate sign information about the constant at query execution time. Instead the patch changes the range optimizer so that it never compares unsiged fields with negative constants. As an added benefit, queries that do such comparisons will execute faster because the range optimizer replaces conditions like: (a) (unsigned_int [< | <=] negative_constant) == FALSE (b) (unsigned_int [> | >=] negative_constant) == TRUE with the corresponding constants. In some cases this may even result in constant time execution.
-
- 22 Jun, 2005 15 commits
-
-
msvensson@neptunus.(none) authored
into neptunus.(none):/home/msvensson/mysql/mysql-4.1
-
lars@mysql.com authored
-
sergefp@mysql.com authored
into mysql.com:/home/psergey/mysql-4.1-bug10151
-
reggie@mdk10.(none) authored
into mdk10.(none):/home/reggie/bk/bug9148
-
evgen@moonbone.local authored
into moonbone.local:/work/mysql-4.1-bug-8147
-
evgen@moonbone.local authored
Fix for fix for bug#9728 decreased functionality in "on duplicate key update" Have to return false to set flag for whole expression.
-
msvensson@neptunus.(none) authored
-
msvensson@neptunus.(none) authored
- Importing the bug fixes by patch due to merge problems.
-
lars@mysql.com authored
-
msvensson@neptunus.(none) authored
into neptunus.(none):/home/msvensson/mysql/bug10589
-
lenz@mysql.com authored
into mysql.com:/space/my/mysql-4.1
-
mskold@mysql.com authored
into mysql.com:/usr/local/home/marty/MySQL/mysql-4.1
-
mskold@mysql.com authored
-
petr@mysql.com authored
-
evgen@moonbone.local authored
Remove changes made by bug fix #8147. They strips list of insert_table_list to only insert table, which results in error reported in bug #9728. Added flag to Item to resolve ambigous fields reported in bug #8147.
-