Commit 390e5768 authored by monty@work.mysql.com's avatar monty@work.mysql.com
Browse files

merge

parents a80e32a4 641ac16c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
Miguel@light.local
Sinisa@sinisa.nasamreza.org
davida@isil.mysql.com
heikki@donna.mysql.fi
@@ -26,6 +27,6 @@ tim@threads.polyesthetic.msg
tim@white.box
tim@work.mysql.com
tonu@hundin.mysql.fi
tonu@volk.internalnet
tonu@x153.internalnet
tonu@x3.internalnet
tonu@volk.internalnet
+9 −0
Original line number Diff line number Diff line
@@ -47604,6 +47604,15 @@ not yet 100% confident in this code.
@appendixsubsec Changes in release 3.23.43
@itemize @bullet
@item
Fixed unlikely bug, which returned not matching rows, in SELECT with
many tables and multi-column indexes and 'range' type.
@item
Fixed a unlikely core-dump bug when doing @code{EXPLAIN SELECT} when using
many tables and @code{ORDER BY}.
@item
Fixed bug in @code{LOAD DATA FROM MASTER} when using table with
@code{CHECKSUM=1}.
@item
Added unique error message when one gets a DEADLOCK during a transaction with
BDB tables.
@item
+1 −1
Original line number Diff line number Diff line
@@ -1248,7 +1248,7 @@ changequote([, ])dnl
AC_DEFUN(AC_SYS_LARGEFILE,
  [AC_REQUIRE([AC_CANONICAL_HOST])
   AC_ARG_ENABLE(largefile,
     [  --disable-large-files   Omit support for large files])
     [  --disable-largefile    Omit support for large files])
   if test "$enable_largefile" != no; then
     AC_CHECK_TOOL(GETCONF, getconf)
     AC_SYS_LARGEFILE_FLAGS(CFLAGS)
+2 −0
Original line number Diff line number Diff line
@@ -20,3 +20,5 @@ id catid stateid countyid
a
1
2
a	a	b
2	2	3
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ t1 index NULL a 9 NULL 12 where used; Using index
table	type	possible_keys	key	key_len	ref	rows	Extra
t1	range	a,b	a	9	NULL	3	where used; Using index
table	type	possible_keys	key	key_len	ref	rows	Extra
t1	ref	a,b	b	4	const	2	where used
t1	range	a,b	a	9	NULL	2	where used; Using index
table	type	possible_keys	key	key_len	ref	rows	Extra
t1	ref	a,b	a	5	const	3	where used; Using index
table	type	possible_keys	key	key_len	ref	rows	Extra
Loading