igor@rurik.mysql.com
26b2c5d7bd
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into rurik.mysql.com:/home/igor/mysql-5.0
2006-04-03 21:07:27 -07:00
sergefp@mysql.com
2130fd06bd
BUG#18659: In get_part_iter_for_interval_via_walking(), when we need to
...
obtain partition number, call partition_info->get_part_partition_id() when
the table has subpartitions, and get_partition_id() otherwise. (The bug
was that we were always doing the latter)
2006-04-04 00:52:14 +04:00
mats@mysql.com
9150b2169b
Merge mysql.com:/home/bkroot/mysql-5.1-new
...
into mysql.com:/home/bk/b18436-mysql-5.1-new
2006-04-03 15:31:12 +02:00
kent@mysql.com
0298bfaac6
Merge
2006-04-03 03:52:22 +02:00
kent@mysql.com
6783064d02
Makefile.am:
...
Distribute mysql-test-run.pl
2006-04-03 03:47:28 +02:00
kent@mysql.com
52db1e450a
Makefile.am:
...
Install Perl mysql-test-run into test directory
2006-04-02 02:10:41 +02:00
mikael@c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se
0a02cbb5f6
Merge c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/clean-mysql-5.1-new
...
into c-4908e253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/wl2826
2006-04-01 16:31:53 -05:00
igor@rurik.mysql.com
d6af1b6e39
Merge rurik.mysql.com:/home/igor/dev/mysql-5.0-0
...
into rurik.mysql.com:/home/igor/dev/mysql-5.1-0
2006-04-01 02:57:56 -08:00
igor@rurik.mysql.com
d1bfeb7520
Added a test case for bug #16504 .
...
Results changed after the bug fix.
2006-03-31 23:12:05 -08:00
mikael@c-520ae253.1238-1-64736c10.cust.bredbandsbolaget.se
ec1445aac8
Merge mronstrom@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into c-520ae253.1238-1-64736c10.cust.bredbandsbolaget.se:/home/pappa/bug13520
2006-04-01 00:59:25 -05:00
igor@rurik.mysql.com
af2d79a771
Fixed bug #16504 .
...
Multiple equalities were not adjusted after reading constant tables.
It resulted in neglecting good index based methods that could be
used to access of other tables.
2006-03-31 21:26:17 -08:00
kent@mysql.com
5e28df35af
Merge
2006-04-01 05:53:37 +02:00
kent@mysql.com
02c661dbcc
Makefile.am:
...
Let "make install" install mysql-test-run.pl
mysql.spec.sh:
Set $LDFLAGS from $MYSQL_BUILD_LDFLAGS (bug#16662)
2006-04-01 05:44:10 +02:00
sergefp@mysql.com
dfb37cb3b1
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/home/psergey/mysql-5.1-bug18025-r2
2006-03-31 22:26:04 +04:00
reggie@linux.site
b05f270c1f
Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into linux.site:/home/reggie/work/mysql-5.1-bug17631
2006-03-31 11:42:12 -06:00
mats@mysql.com
9d158916b7
Merge mysql.com:/home/bkroot/mysql-5.1-new
...
into mysql.com:/home/bk/b18436-mysql-5.1-new
2006-03-31 18:27:08 +02:00
bar@mysql.com
9b41bb7a0a
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/usr/home/bar/mysql-5.1-new
2006-03-31 21:17:38 +05:00
kent@mysql.com
2727df012d
Merge
2006-03-31 15:26:51 +02:00
bar@mysql.com
67f26cc432
Merge mysql.com:/usr/home/bar/mysql-5.0.1.2107.1.1
...
into mysql.com:/usr/home/bar/mysql-5.1-new
2006-03-31 17:38:00 +05:00
mats@mysql.com
663479f84f
Merge mysql.com:/home/bkroot/mysql-5.1-new
...
into mysql.com:/home/bk/b18436-mysql-5.1-new
2006-03-31 13:43:20 +02:00
mats@mysql.com
e31aacc158
Merge mysql.com:/home/bkroot/mysql-5.1-new
...
into mysql.com:/home/bk/b18436-mysql-5.1-new
2006-03-31 13:34:30 +02:00
sergefp@mysql.com
da81072823
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/home/psergey/mysql-5.1-bug18025-r2
2006-03-31 15:20:00 +04:00
sergefp@mysql.com
3886483b54
Fix for BUG#18025: Wrong query results because of bugs in partition pruning:
...
- Fix typo bug in SEL_ARG::is_singlepoint()
- In set_up_range_analysis_info(), treat MEDIUMINT as enumerable type just like other integer types
2006-03-31 15:17:15 +04:00
timour@mysql.com
b85bd1e835
Merge mysql.com:/home/timka/mysql/src/5.0-virgin
...
into mysql.com:/home/timka/mysql/src/5.0-bug-16710
2006-03-31 12:39:33 +03:00
timour@mysql.com
eed7cf09dd
Fix for BUG#16710.
...
The bug was due to a missed case in the detection of whether an index
can be used for loose scan. More precisely, the range optimizer chose
to use loose index scan for queries for which the condition(s) over
an index key part could not be pushed to the index together with the
loose scan.
As a result, loose index scan was selecting the first row in the
index with a given GROUP BY prefix, and was applying the WHERE
clause after that, while it should have inspected all rows with
the given prefix, and apply the WHERE clause to all of them.
The fix detects and skips such cases.
2006-03-31 12:34:28 +03:00
gluh@mysql.com
486a48d46c
Merge mysql.com:/home/gluh/MySQL/Merge/5.0
...
into mysql.com:/home/gluh/MySQL/Merge/5.1-new
2006-03-31 13:17:45 +05:00
reggie@linux.site
55a8eb95f2
BUG # 17631 SHOW TABLE STATUS reports wrong engine
2006-03-31 01:02:44 -06:00
igor@rurik.mysql.com
4cdda34fd3
Merge rurik.mysql.com:/home/igor/mysql-5.1
...
into rurik.mysql.com:/home/igor/dev/mysql-5.1-0
2006-03-30 13:34:14 -08:00
igor@rurik.mysql.com
ea2aaa4e2f
Merge rurik.mysql.com:/home/igor/mysql-5.0
...
into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
2006-03-30 11:34:14 -08:00
ingo@mysql.com
7253099cf3
Bug#18477 - MySQL/InnoDB Ignoring Foreign Keys in ALTER TABLE
...
InnoDB requires a full table rebuild for foreign key changes.
It was not possible in compare_tables() to detect such changes.
On Heikkis proposal I added a new flag to the syntax parser
where foreign key definition changes are done. I test for
this flag in compare_tables() now.
2006-03-30 20:55:54 +02:00
konstantin@mysql.com
08eff11273
Merge mysql.com:/opt/local/work/tmp_merge2
...
into mysql.com:/opt/local/work/mysql-5.1-merge
2006-03-30 19:12:10 +04:00
evgen@sunlight.local
2eae9b0a18
Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into sunlight.local:/local_work/15560-bug-5.0-mysql
2006-03-30 19:05:55 +04:00
konstantin@mysql.com
5c99b8b83f
Merge mysql.com:/opt/local/work/tmp_merge
...
into mysql.com:/opt/local/work/mysql-5.1-merge
2006-03-30 18:43:42 +04:00
evgen@sunlight.local
eb075f2255
Manual merge
2006-03-30 17:14:55 +04:00
petr@mysql.com
0250c0115d
Merge pchardin@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/home/cps/mysql/devel/5.1-repair-csv
2006-03-30 16:32:53 +04:00
petr@mysql.com
5d448351f2
fix csv test failure on non-linux platforms
2006-03-30 16:30:30 +04:00
bar@mysql.com
c5cd39b29a
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into mysql.com:/usr/home/bar/mysql-5.0
2006-03-30 13:04:58 +05:00
evgen@sunlight.local
47f9b46564
Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-4.1
...
into sunlight.local:/local_work/15560-bug-4.1-mysql
2006-03-30 10:22:03 +04:00
kent@mysql.com
ae532e2611
Merge
2006-03-30 06:48:40 +02:00
gluh@eagle.intranet.mysql.r18.ru
70a8f32d81
post-merge fix
2006-03-30 09:13:25 +05:00
gluh@mysql.com
ea56026e4f
Merge
2006-03-30 08:13:28 +05:00
igor@rurik.mysql.com
0440cc75bd
Merge rurik.mysql.com:/home/igor/dev/mysql-5.0-0
...
into rurik.mysql.com:/home/igor/dev/mysql-5.1-0
2006-03-29 17:54:01 -08:00
igor@rurik.mysql.com
0f9ab67d41
Fixed bug #18279 : crash in the cases when on conditions are moved
...
out of a nested join to the on conditions for the nest.
The bug happened due to:
1. The function simplify_joins could change on expressions for nested joins.
Yet modified on expressions were not saved in prep_on_expr.
2. On expressions were not restored for nested joins in
reinit_stmt_before_use.
2006-03-29 16:45:29 -08:00
monty@mysql.com
eb9bc92d11
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
...
into mysql.com:/home/my/mysql-4.1
2006-03-30 03:32:58 +03:00
monty@mysql.com
84e7c9633a
Fix error in prefix compression of keys in MyISAM when key length changed from 254 -> 255
...
Bug #17705 "FT Index corruption occurs with UTF8 data..."
(Actually, the bug had nothing to do with FT index but with general key compression)
2006-03-30 01:50:52 +03:00
kent@mysql.com
1f5ac05df0
mysql-test-run.pl:
...
Check that port range is valid, bug#16807
2006-03-30 00:48:46 +02:00
monty@mysql.com
98052743ff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/home/my/mysql-5.1
2006-03-30 01:21:48 +03:00
mskold@mysql.com
8d1e56e686
Fix for bug#18598 ndb_partition_list
2006-03-29 23:48:35 +02:00
konstantin@mysql.com
38bd424afa
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
...
into mysql.com:/opt/local/work/mysql-5.0-15683
2006-03-30 00:20:13 +04:00
aivanov@mysql.com
2dfb139c08
Merge aivanov@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into mysql.com:/home/alexi/innodb/mysql-5.0-merge
2006-03-30 00:20:12 +04:00