mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
manual merge.
This commit is contained in:
@ -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');
|
||||
|
Reference in New Issue
Block a user