From d03e4637b6e94d189313200830179f1cab1e94cf Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 9 May 2005 21:59:03 +0200 Subject: [PATCH 1/3] Add compiler settings for Pentium M BUILD/check-cpu: Pentium M --- BUILD/check-cpu | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BUILD/check-cpu b/BUILD/check-cpu index dfdf96d6b29..3cce4b1ab3d 100755 --- a/BUILD/check-cpu +++ b/BUILD/check-cpu @@ -55,6 +55,9 @@ case "$cpu_family--$model_name" in *Pentium*III*CPU*) cpu_flag="pentium3"; ;; + *Pentium*M*pro*) + cpu_flag="pentium-m"; + ;; *Athlon*64*) cpu_flag="athlon64"; cpu_flag_old="athlon"; From 4a1b6c010212c2b29ecd509b030d457bfdd17603 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 10 May 2005 00:40:41 +0200 Subject: [PATCH 2/3] Fix for BUG#10070: Make the test not to produce warnings if InnoDB is not available --- mysql-test/t/range.test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test index 3d3d4748fe3..b51a79fba77 100644 --- a/mysql-test/t/range.test +++ b/mysql-test/t/range.test @@ -448,6 +448,7 @@ explain select * from t1 where a='aaa' collate latin1_german1_ci; drop table t1; # Test for BUG#9348 "result for WHERE A AND (B OR C) differs from WHERE a AND (C OR B)" +--disable_warnings CREATE TABLE t1 ( `CLIENT` char(3) character set latin1 collate latin1_bin NOT NULL default '000', `ARG1` char(3) character set latin1 collate latin1_bin NOT NULL default '', @@ -456,6 +457,7 @@ CREATE TABLE t1 ( `FUNCTINT` int(11) NOT NULL default '0', KEY `VERI_CLNT~2` (`ARG1`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; +--enable_warnings INSERT INTO t1 VALUES ('000',' 0',' 0','Text 001',0), ('000',' 0',' 1','Text 002',0), ('000',' 1',' 2','Text 003',0), ('000',' 2',' 3','Text 004',0), From 31d7922823c8cc9d8acfe49b354b02dd7f5021c3 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 10 May 2005 10:45:16 +0200 Subject: [PATCH 3/3] Remove testcode sql/item_strfunc.h: Remove the testcode --- sql/item_strfunc.h | 1 - 1 file changed, 1 deletion(-) diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index e576b2c2a7e..6f6af415086 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -18,7 +18,6 @@ /* This file defines all string functions */ #ifdef USE_PRAGMA_INTERFACE -#error PRAGMA #pragma interface /* gcc class implementation */ #endif