msvensson@neptunus.(none)
9da86d4521
Merge 5.0 to 5.1
2006-05-10 15:54:51 +02:00
joerg@mysql.com
26395c7e7d
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/M51/mysql-5.1
2006-05-10 15:52:45 +02:00
msvensson@neptunus.(none)
4736d8d53c
Merge neptunus.(none):/home/msvensson/mysql/tmp/tmp_merge
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
2006-05-10 15:49:33 +02:00
msvensson@neptunus.(none)
f5cbfceb93
Merge bk-internal:/home/bk/mysql-5.1-new
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
2006-05-10 09:21:58 +02:00
serg@sergbook.mysql.com
dc6f9ccbc8
fix HA_ERR_RECORD_DELETED for falcon
2006-05-09 15:14:29 -04:00
gkodinov@mysql.com
baba405cfa
Merge mysql.com:/home/kgeorge/mysql/5.0/B18068
...
into mysql.com:/home/kgeorge/mysql/5.1/B18068
2006-05-09 18:47:29 +03:00
serg@sergbook.mysql.com
c4f3410449
results fixed
2006-05-09 11:14:31 -04:00
gkodinov@mysql.com
7bae0de398
BUG#18068: SELECT DISTINCT (with duplicates and covering index)
...
When converting DISTINCT to GROUP BY where the columns are from the covering
index and they are quoted twice in the SELECT list the optimizer is creating
improper processing sequence. This is because of the fact that the columns
of the covering index are not recognized as such and treated as non-index
columns.
Generally speaking duplicate columns can safely be removed from the GROUP
BY/DISTINCT list because this will not add or remove new rows in the
resulting set. Duplicates can be removed even if they are not consecutive
(as is the case for ORDER BY, where the duplicate columns can be removed
only if they are consecutive).
So we can safely transform "SELECT DISTINCT a,a FROM ... ORDER BY a" to
"SELECT a,a FROM ... GROUP BY a ORDER BY a" instead of
"SELECT a,a FROM .. GROUP BY a,a ORDER BY a". We can even transform
"SELECT DISTINCT a,b,a FROM ... ORDER BY a,b" to
"SELECT a,b,a FROM ... GROUP BY a,b ORDER BY a,b".
The fix to this bug consists of checking for duplicate columns in the SELECT
list when constructing the GROUP BY list in transforming DISTINCT to GROUP
BY and skipping the ones that are already in.
2006-05-09 18:13:01 +03:00
msvensson@neptunus.(none)
c422ffc404
Merge bk-internal:/home/bk/mysql-5.1-new
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
2006-05-09 16:38:49 +02:00
midom@flute.local
994ab2dcea
Fix InnoDB building on MacOSX when autorun.sh is used
2006-05-09 16:24:57 +03:00
mskold@mysql.com
8206734815
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into mysql.com:/home/marty/MySQL/mysql-5.0
2006-05-09 12:36:38 +02:00
mskold@mysql.com
fcce6de1e0
Merge mysql.com:/home/marty/MySQL/mysql-4.1
...
into mysql.com:/home/marty/MySQL/mysql-5.0
2006-05-09 12:17:38 +02:00
mskold@mysql.com
9bde189d55
Changed to use new syntax for PRIMARY/UNIQUE KEY USING HASH
2006-05-09 12:06:50 +02:00
mskold@mysql.com
f1fb5b9f34
bug #19623 UniqueHashIndexes resource leak: allocate array pool based on MaxNoOfTables
2006-05-09 11:55:41 +02:00
msvensson@neptunus.(none)
2759603c1d
Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
2006-05-09 10:44:19 +02:00
msvensson@neptunus.(none)
af47f9092c
Merge bk-internal:/home/bk/mysql-5.1-new
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
2006-05-09 09:44:47 +02:00
msvensson@neptunus.(none)
27c64c715f
Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
2006-05-09 08:26:25 +02:00
mikael@c-870ae253.1238-1-64736c10.cust.bredbandsbolaget.se
b8227de1bf
BUG#19140: Create index caused crash
2006-05-08 21:41:10 -04:00
serg@sergbook.mysql.com
f7a56c0b4d
typo fixed
2006-05-08 18:14:39 -04:00
kent@mysql.com
c141841a49
2006-05-09 00:11:54 +02:00
kent@mysql.com
b79dfd5e3e
Merge mysql.com:/Users/kent/mysql/bk/mysql-5.0-release
...
into mysql.com:/Users/kent/mysql/bk/mysql-5.0-new
2006-05-09 00:02:33 +02:00
serg@sergbook.mysql.com
1f24bffe11
innodb also need libtoolize
2006-05-08 18:02:05 -04:00
joerg@mysql.com
61748a0ca2
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/M51/mysql-5.1
2006-05-08 23:36:22 +02:00
joerg@mysql.com
7ace714142
configure.in : Now that 5.1.10 has been cloned, bump up the version.
2006-05-08 23:34:54 +02:00
serg@sergbook.mysql.com
7b2ed1143a
bootstrap is not using BUILD/autorun.sh :(
2006-05-08 17:10:04 -04:00
serg@sergbook.mysql.com
28dcd3ad49
autorun.sh:
...
autotool-ize plugins before the main source tree
2006-05-08 16:50:29 -04:00
serg@sergbook.mysql.com
976f1da21f
don't introduce a deprecated syntax
2006-05-08 16:06:16 -04:00
serg@sergbook.mysql.com
147f43d774
merged
2006-05-08 13:41:43 -04:00
tomas@poseidon.ndb.mysql.com
792f7383ac
Bug #19572 Memory leaks in cluster when running make test
2006-05-08 18:09:01 +02:00
msvensson@neptunus.(none)
b60540a862
Remove valgrind and compiler warnings
...
Add function 'vio_end' that will cleanup resources allocated by vio and the components it uses.
2006-05-08 17:14:06 +02:00
msvensson@neptunus.(none)
405d08be71
Merge neptunus.(none):/home/msvensson/mysql/my50-maint-bug18474
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
2006-05-08 16:44:37 +02:00
msvensson@neptunus.(none)
0d3c0dfb75
Merge 192.168.0.20:mysql/my50-maint-yassl
...
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
2006-05-08 16:38:24 +02:00
tomas@poseidon.ndb.mysql.com
e1430449e6
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
2006-05-08 14:19:32 +02:00
tomas@poseidon.ndb.mysql.com
6ee824ad01
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.1-new-ndb
...
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
2006-05-08 14:15:33 +02:00
tomas@poseidon.ndb.mysql.com
0f9be0afe5
removed lead of ndb eventoperations on ndb object delete
2006-05-08 14:11:15 +02:00
mskold@mysql.com
289d4f4595
Merge mskold@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into mysql.com:/home/marty/MySQL/mysql-5.1-new
2006-05-08 08:55:50 +02:00
tnurnberg@mysql.com
1e8e031baf
Bug#19509: Redundant check in sql_acl.cc
...
Remove duplicate source line.
2006-05-08 07:47:34 +02:00
igor@rurik.mysql.com
91031fc2bc
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into rurik.mysql.com:/home/igor/mysql-5.0
2006-05-07 16:24:03 -07:00
igor@rurik.mysql.com
b70efcacec
Post-merge fixes.
2006-05-07 16:14:43 -07:00
igor@rurik.mysql.com
e7f21dcef6
Merge rurik.mysql.com:/home/igor/dev/mysql-4.1-0
...
into rurik.mysql.com:/home/igor/dev/mysql-5.0-0
2006-05-07 14:06:12 -07:00
igor@rurik.mysql.com
0928ae9bf4
Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-4.1
...
into rurik.mysql.com:/home/igor/mysql-4.1
2006-05-07 11:25:33 -07:00
aelkin@mysql.com
f384cfe33c
Merge aelkin@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into mysql.com:/usr_rh9/home/elkin.rh9/MySQL/Merge/5.0-bug19136
2006-05-07 20:03:08 +03:00
aelkin@mysql.com
49bc52e5c9
Bug#19136: Crashing log-bin and uninitialized user variables in a derived table
...
recalculating results
2006-05-07 19:54:57 +03:00
sergefp@mysql.com
a6619a74d6
BUG#16798: Merge into 5.0: s/used_tables()/!const_item()/, added comment about its effects.
2006-05-07 19:01:49 +04:00
aelkin@mysql.com
899cf9b584
Merge mysql.com:/usr_rh9/home/elkin.rh9/4.1
...
into mysql.com:/usr_rh9/home/elkin.rh9/MySQL/Merge/5.0-bug19136
2006-05-07 16:02:55 +03:00
aelkin@mysql.com
7dcd1383a8
Merge mysql.com:/usr_rh9/home/elkin.rh9/MySQL/BARE/4.1
...
into mysql.com:/usr_rh9/home/elkin.rh9/MySQL/FIXES/4.1-bug19136_unass_user_var
2006-05-07 11:43:27 +03:00
igor@rurik.mysql.com
7977a0c867
Fixed bug #14927 .
...
A query with a group by and having clauses could return a wrong
result set if the having condition contained a constant conjunct
evaluated to FALSE.
It happened because the pushdown condition for table with
grouping columns lost its constant conjuncts.
Pushdown conditions are always built by the function make_cond_for_table
that ignores constant conjuncts. This is apparently not correct when
constant false conjuncts are present.
2006-05-06 23:48:13 -07:00
sergefp@mysql.com
ce766f2c52
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0
...
into mysql.com:/home/psergey/mysql-5.0-bug16798-merge
2006-05-06 22:24:39 +04:00
sergefp@mysql.com
ceef1105b2
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1
...
into mysql.com:/home/psergey/mysql-4.1-bug16798
2006-05-06 22:15:27 +04:00
jonas@perch.ndb.mysql.com
9811fc2931
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.1-new
...
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new
2006-05-06 18:41:42 +02:00