summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps.result
diff options
context:
space:
mode:
authorunknown <dlenev@mysql.com>2006-02-27 20:00:06 +0300
committerunknown <dlenev@mysql.com>2006-02-27 20:00:06 +0300
commit475eb3e9179fa4c1af3e0daa980dc6f30025ac28 (patch)
treedb62c07a8f987423cd0d7bffb50a392bff091611 /mysql-test/r/ps.result
parentc7fc3773c37767d7a058c8672f9e1d42dd3046b6 (diff)
downloadmariadb-git-475eb3e9179fa4c1af3e0daa980dc6f30025ac28.tar.gz
Fixed test results after bad auto-merge.
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r--mysql-test/r/ps.result14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result
index a7c05e9acad..4d108e06356 100644
--- a/mysql-test/r/ps.result
+++ b/mysql-test/r/ps.result
@@ -859,6 +859,20 @@ count(*)
5
deallocate prepare stmt;
drop table t1;
+prepare stmt from 'create table t1 (a varchar(10) character set utf8)';
+execute stmt;
+insert into t1 (a) values (repeat('a', 20));
+select length(a) from t1;
+length(a)
+10
+drop table t1;
+execute stmt;
+insert into t1 (a) values (repeat('a', 20));
+select length(a) from t1;
+length(a)
+10
+drop table t1;
+deallocate prepare stmt;
create table t1 (id int);
prepare ins_call from "insert into t1 (id) values (1)";
execute ins_call;