1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge mysql.com:/home/ram/work/mysql-5.0-maint

into  mysql.com:/home/ram/work/b28509/b28509.5.0
This commit is contained in:
ramil/ram@ramil.myoffice.izhnet.ru
2007-05-23 13:48:31 +05:00
3 changed files with 19 additions and 4 deletions

View File

@ -1791,5 +1791,13 @@ execute stmt;
deallocate prepare stmt;
drop tables t1;
#
# Bug #28509: strange behaviour: passing a decimal value to PS
#
prepare stmt from "create table t1 select ?";
set @a=1.0;
execute stmt using @a;
show create table t1;
drop table t1;
--echo End of 5.0 tests.