diff options
author | tsmith@ramayana.hindu.god <> | 2007-12-05 12:33:36 -0700 |
---|---|---|
committer | tsmith@ramayana.hindu.god <> | 2007-12-05 12:33:36 -0700 |
commit | 8fc0bfb6b6d94a8b06c0f3a632baa477612b7249 (patch) | |
tree | 014b7a0c6686c33c9845e9527ebb9f0052457950 /mysql-test/r/ps.result | |
parent | 1a87a089a76b6c097100f39ff3c13c0c6cde748e (diff) | |
parent | 4e08609f03ebd077bdd0843ab1722c8f19735c68 (diff) | |
download | mariadb-git-8fc0bfb6b6d94a8b06c0f3a632baa477612b7249.tar.gz |
Merge ramayana.hindu.god:/home/tsmith/m/bk/51
into ramayana.hindu.god:/home/tsmith/m/bk/maint/51-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 9d0906ad5e7..ae68f8a4c5e 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'); |