summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/strict.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/strict.result')
-rw-r--r--mysql-test/main/strict.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/strict.result b/mysql-test/main/strict.result
index 31630599..d9d92402 100644
--- a/mysql-test/main/strict.result
+++ b/mysql-test/main/strict.result
@@ -897,7 +897,7 @@ ERROR 22003: Out of range value for column 'col1' at row 1
INSERT INTO t1 (col2) VALUES ('-1.2E-3');
ERROR 22003: Out of range value for column 'col2' at row 1
UPDATE t1 SET col1 =col1 * 5000 WHERE col1 > 0;
-ERROR 22003: DOUBLE value is out of range in '"test"."t1"."col1" * 5000'
+Got one of the listed errors
UPDATE t1 SET col2 =col2 / 0 WHERE col2 > 0;
ERROR 22012: Division by 0
UPDATE t1 SET col2= MOD(col2,0) WHERE col2 > 0;