1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

manual merge.

This commit is contained in:
unknown
2007-11-10 18:27:57 +04:00
parent 71d1a9ca25
commit f56e68929a
3 changed files with 41 additions and 22 deletions

View File

@ -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');