diff options
author | unknown <ramil/ram@mysql.com/ramil.myoffice.izhnet.ru> | 2007-11-10 18:57:09 +0400 |
---|---|---|
committer | unknown <ramil/ram@mysql.com/ramil.myoffice.izhnet.ru> | 2007-11-10 18:57:09 +0400 |
commit | 9e6b13b5f24f22a74bd2a8ca2c008e83cf376c00 (patch) | |
tree | 8bd07312e69f9369b0ca36b72ac343400b1af5b6 /mysql-test/r/ps.result | |
parent | 401e4c647a9c4507ce26ea7fa7696cdaab453e47 (diff) | |
download | mariadb-git-9e6b13b5f24f22a74bd2a8ca2c008e83cf376c00.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 edac68a88d6..14dec382244 100644 --- a/mysql-test/r/ps.result +++ b/mysql-test/r/ps.result @@ -1143,6 +1143,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'); |