diff options
author | monty@mashka.mysql.fi <> | 2003-02-03 20:20:32 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-03 20:20:32 +0200 |
commit | e3cd63521cd68743393b35c0056faf3e9388ca1c (patch) | |
tree | 9969b64873b025006c1eb0dba4dddc67e5501c19 /configure.in | |
parent | c42e94a6e690e1fbea887f2e2ed95b0e2ae97607 (diff) | |
download | mariadb-git-e3cd63521cd68743393b35c0056faf3e9388ca1c.tar.gz |
Fix for MIN/MAX with empty tables
MIN(key_column) could in some cases return NULL on a column with NULL and other values.
MIN(key_column) and MAX(key_column) could in some cases return wrong values when used in OUTER JOIN.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 6e1e274fe3c..2255dd0e2b6 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(sql/mysqld.cc) AC_CANONICAL_SYSTEM # The Docs Makefile.am parses this line! -AM_INIT_AUTOMAKE(mysql, 4.0.10-gamma) +AM_INIT_AUTOMAKE(mysql, 4.0.11) AM_CONFIG_HEADER(config.h) PROTOCOL_VERSION=10 |