diff options
author | unknown <ramil/ram@mysql.com/ramil.myoffice.izhnet.ru> | 2007-11-10 18:27:57 +0400 |
---|---|---|
committer | unknown <ramil/ram@mysql.com/ramil.myoffice.izhnet.ru> | 2007-11-10 18:27:57 +0400 |
commit | f56e68929a9bd916a3395276e6165af366132c8c (patch) | |
tree | 13bf1939840bdfd198c5f10d8dbce4e157763671 /mysql-test/r/ps.result | |
parent | 71d1a9ca25280ec57b2724b7d3cf4e2410556b68 (diff) | |
download | mariadb-git-f56e68929a9bd916a3395276e6165af366132c8c.tar.gz |
manual merge.
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r-- | mysql-test/r/ps.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result index 4db588e5cac..0682cae5c80 100644 --- a/mysql-test/r/ps.result +++ b/mysql-test/r/ps.result @@ -1136,6 +1136,11 @@ a 13 DEALLOCATE PREPARE st1; DROP TABLE t1; +create table t1 (a int, b tinyint); +prepare st1 from 'update t1 set b= (str_to_date(a, a))'; +execute st1; +deallocate prepare st1; +drop table t1; End of 4.1 tests. create table t1 (a varchar(20)); insert into t1 values ('foo'); |