From b786ba20d57d3d898f764b47807697f4c14c0b58 Mon Sep 17 00:00:00 2001
From: unknown <serg@serg.mysql.com>
Date: Mon, 27 Jan 2003 00:14:12 +0100
Subject: ft_init_stopwords() in embedded

---
 libmysqld/lib_sql.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'libmysqld')

diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc
index 14d293d91e3..fad596d30b9 100644
--- a/libmysqld/lib_sql.cc
+++ b/libmysqld/lib_sql.cc
@@ -525,11 +525,11 @@ int STDCALL mysql_server_init(int argc, char **argv, char **groups)
   }
 #else
   locked_in_memory=0;
-#endif    
+#endif
 
   if (opt_myisam_log)
     (void) mi_log( 1 );
-  ft_init_stopwords(ft_precompiled_stopwords);
+  ft_init_stopwords();
 
   /*
     init signals & alarm
-- 
cgit v1.2.1


From 8c1c18fbc9772b311c19eec2f7f2bbda29f3e15e Mon Sep 17 00:00:00 2001
From: unknown <monty@mashka.mysql.fi>
Date: Mon, 3 Feb 2003 20:20:32 +0200
Subject: 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.

configure.in:
  Updated version number
libmysqld/libmysqld.c:
  Portability fix (for windows)
mysql-test/r/func_group.result:
  Added test case for MIN/MAX problems
mysql-test/t/func_group.test:
  Added test case for MIN/MAX problems
sql/item.h:
  Fix for MIN/MAX with empty tables
sql/item_sum.h:
  Fix for MIN/MAX with empty tables
sql/opt_sum.cc:
  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.
sql/sql_select.cc:
  Fix for MIN/MAX with empty tables
---
 libmysqld/libmysqld.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'libmysqld')

diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c
index 3fba238a8bf..3f7c666cd30 100644
--- a/libmysqld/libmysqld.c
+++ b/libmysqld/libmysqld.c
@@ -62,7 +62,7 @@ my_string	mysql_unix_port=0;
 #define closesocket(A) close(A)
 #endif
 
-static void mysql_once_init(void);
+void STDCALL mysql_once_init(void);
 static MYSQL_DATA *read_rows (MYSQL *mysql,MYSQL_FIELD *fields,
 			      uint field_count);
 static int read_one_row(MYSQL *mysql,uint fields,MYSQL_ROW row,
-- 
cgit v1.2.1