summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps.result
diff options
context:
space:
mode:
authorunknown <ramil/ram@ramil.myoffice.izhnet.ru>2007-05-23 13:48:31 +0500
committerunknown <ramil/ram@ramil.myoffice.izhnet.ru>2007-05-23 13:48:31 +0500
commite6f1c2dd14af9dfc90765b2fba7f4c7dc89d0e24 (patch)
tree4e3744e6afd8ddf505320ed3a983914c844049ac /mysql-test/r/ps.result
parentd076bcbcc431061cbb668e81ab54281605ef9bbe (diff)
parent6249d57d4bc56a0213a152bae1a930fe45412111 (diff)
downloadmariadb-git-e6f1c2dd14af9dfc90765b2fba7f4c7dc89d0e24.tar.gz
Merge mysql.com:/home/ram/work/mysql-5.0-maint
into mysql.com:/home/ram/work/b28509/b28509.5.0 mysql-test/r/ps.result: Auto merged mysql-test/t/ps.test: Auto merged sql/item.cc: Auto merged
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r--mysql-test/r/ps.result9
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.