summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/innodb_bug54044.test
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-03-29 14:48:48 +0200
committerSergei Golubchik <sergii@pisem.net>2011-03-29 14:48:48 +0200
commit8de6199b164fe6616db056465b75b318bd5f8a4a (patch)
tree01b39da92e1ccf1bf0f50b88579c90dd9298df54 /mysql-test/suite/innodb/t/innodb_bug54044.test
parent6432b5f127dbc3aff4f89367c6afccd1b2ff6ba8 (diff)
downloadmariadb-git-8de6199b164fe6616db056465b75b318bd5f8a4a.tar.gz
lp:743017 Diverging results with TIME(3) and ranges depending on the execution plan in 5.1-micro
rewrite get_innobase_type_from_mysql_type() to use types as reported by the Field objects, instead of relying on ad-hoc assumptions.
Diffstat (limited to 'mysql-test/suite/innodb/t/innodb_bug54044.test')
-rw-r--r--mysql-test/suite/innodb/t/innodb_bug54044.test6
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_bug54044.test b/mysql-test/suite/innodb/t/innodb_bug54044.test
index a6722ed6399..2e7f5915a3a 100644
--- a/mysql-test/suite/innodb/t/innodb_bug54044.test
+++ b/mysql-test/suite/innodb/t/innodb_bug54044.test
@@ -1,11 +1,5 @@
-# This is the test for bug #54044. Special handle MYSQL_TYPE_NULL type
-# during create table, so it will not trigger assertion failure.
-
--source include/have_innodb.inc
-# This 'create table' operation should fail because of
-# using NULL datatype
---error ER_CANT_CREATE_TABLE
CREATE TEMPORARY TABLE table_54044 ENGINE = INNODB
AS SELECT IF(NULL IS NOT NULL, NULL, NULL);