diff options
author | ramil/ram@ramil.myoffice.izhnet.ru <> | 2007-05-23 13:48:31 +0500 |
---|---|---|
committer | ramil/ram@ramil.myoffice.izhnet.ru <> | 2007-05-23 13:48:31 +0500 |
commit | 1f9b403b45d804d9f19a42fb59b81d78e631395e (patch) | |
tree | 4e3744e6afd8ddf505320ed3a983914c844049ac /mysql-test/r/ps.result | |
parent | f1ae9793a7e3ce7635da83a6cc490f68f66a08f2 (diff) | |
parent | 11a2fd422b5e605f16335431254ee550b9f03363 (diff) | |
download | mariadb-git-1f9b403b45d804d9f19a42fb59b81d78e631395e.tar.gz |
Merge mysql.com:/home/ram/work/mysql-5.0-maint
into mysql.com:/home/ram/work/b28509/b28509.5.0
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r-- | mysql-test/r/ps.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result index 8a10a52ee65..482c9f42f42 100644 --- a/mysql-test/r/ps.result +++ b/mysql-test/r/ps.result @@ -1683,4 +1683,13 @@ execute stmt; ERROR 42S22: Unknown column 'y.value' in 'field list' deallocate prepare stmt; drop tables t1; +prepare stmt from "create table t1 select ?"; +set @a=1.0; +execute stmt using @a; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `?` decimal(2,1) default NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +drop table t1; End of 5.0 tests. |