mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
manual merge.
This commit is contained in:
@@ -1143,6 +1143,11 @@ a
|
|||||||
13
|
13
|
||||||
DEALLOCATE PREPARE st1;
|
DEALLOCATE PREPARE st1;
|
||||||
DROP TABLE t1;
|
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.
|
End of 4.1 tests.
|
||||||
create table t1 (a varchar(20));
|
create table t1 (a varchar(20));
|
||||||
insert into t1 values ('foo');
|
insert into t1 values ('foo');
|
||||||
|
Reference in New Issue
Block a user