summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_uint.result
diff options
context:
space:
mode:
authorunknown <venu@myvenu.com>2003-04-30 00:07:37 -0700
committerunknown <venu@myvenu.com>2003-04-30 00:07:37 -0700
commitb85712945457d5455f603678f8bcb15d2f929e82 (patch)
tree19e2ae7cf49f8bfd63f42100781c94f9338f4e54 /mysql-test/r/type_uint.result
parent05af39d59102c5b46f71ca4d3626feba2c3c777a (diff)
downloadmariadb-git-b85712945457d5455f603678f8bcb15d2f929e82.tar.gz
Updated warning test
Updated all tests to catchup warnings for all field conversions mysql-test/t/ctype_many.test: Disable the warnings for misc conversion mysql-test/t/warnings.test: More warning tests
Diffstat (limited to 'mysql-test/r/type_uint.result')
-rw-r--r--mysql-test/r/type_uint.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/type_uint.result b/mysql-test/r/type_uint.result
index 1acfc700d3a..ee81295e696 100644
--- a/mysql-test/r/type_uint.result
+++ b/mysql-test/r/type_uint.result
@@ -2,6 +2,8 @@ drop table if exists t1;
create table t1 (this int unsigned);
insert into t1 values (1);
insert into t1 values (-1);
+Warnings:
+Warning 1262 Data truncated, out of range for column 'this' at row 1
select * from t1;
this
1