=== modified file 'mysql-test/suite/ndb/r/ndb_update_no_read.result'
--- a/mysql-test/suite/ndb/r/ndb_update_no_read.result	2008-09-24 14:44:11 +0000
+++ b/mysql-test/suite/ndb/r/ndb_update_no_read.result	2008-09-26 13:40:55 +0000
@@ -293,9 +293,12 @@
 # 1 warning
 
 update t1 set b='two thousand' where a=2000;
-Warnings:
+affected rows: 0
+info: Rows matched: 0  Changed: 0  Warnings: 1
+show warnings;
+Level	Code	Message
 Warning	1265	Data truncated for column 'b' at row 1
-affected rows: 0
+affected rows: 1
 @ndb_execute_count:=VARIABLE_VALUE-@ndb_init_execute_count
 1
 affected rows: 1
@@ -367,11 +370,14 @@
 begin;
 affected rows: 0
 update t1 set b='two thousand' where a=2000;
-Warnings:
+affected rows: 0
+info: Rows matched: 0  Changed: 0  Warnings: 1
+commit;
+affected rows: 0
+show warnings;
+Level	Code	Message
 Warning	1265	Data truncated for column 'b' at row 1
-affected rows: 0
-commit;
-affected rows: 0
+affected rows: 1
 @ndb_execute_count:=VARIABLE_VALUE-@ndb_init_execute_count
 2
 affected rows: 1

=== modified file 'mysql-test/suite/ndb/t/ndb_update_no_read.test'
--- a/mysql-test/suite/ndb/t/ndb_update_no_read.test	2008-09-24 14:44:11 +0000
+++ b/mysql-test/suite/ndb/t/ndb_update_no_read.test	2008-09-26 13:40:55 +0000
@@ -257,9 +257,12 @@
 --echo # Rows matched=changed=affected=0
 --echo # 1 warning
 --echo 
+--disable_warnings # Workaround to bug#39663
 --source include/ndb_init_execute_count.inc
 update t1 set b='two thousand' where a=2000;
+show warnings; # Workaround to bug#39663
 --source include/ndb_execute_count.inc
+--enable_warnings # Workaround to bug#39663
 
 
 # No autocommit, successful update
@@ -321,10 +324,13 @@
 --echo # Rows matched=changed=affected=0
 --echo # 1 warning
 --echo 
+--disable_warnings # Workaround to bug#39663
 --source include/ndb_init_execute_count.inc
 begin;
 update t1 set b='two thousand' where a=2000;
 commit;
+show warnings; # Workaround to bug#39663
 --source include/ndb_execute_count.inc
+--enable_warnings # Workaround to bug#39663
 
 drop table t1;



