summaryrefslogtreecommitdiff
path: root/mysql-test/extra
diff options
context:
space:
mode:
authorMats Kindahl <mats@sun.com>2009-12-21 20:55:40 +0100
committerMats Kindahl <mats@sun.com>2009-12-21 20:55:40 +0100
commit51dc566eb63dfae5407304e38d8c9f8f90d01259 (patch)
tree5490b9cb03a3b587e349e75c224f2f958ae2d927 /mysql-test/extra
parentd78e5ff0607b69a630ac1c9dba36b43b131a5d03 (diff)
parenta22bc99ff6467f2804c01600465785125a1b1ff2 (diff)
downloadmariadb-git-51dc566eb63dfae5407304e38d8c9f8f90d01259.tar.gz
Merging with mysql-5.1-rep+2
Diffstat (limited to 'mysql-test/extra')
-rw-r--r--mysql-test/extra/rpl_tests/type_conversions.test7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/extra/rpl_tests/type_conversions.test b/mysql-test/extra/rpl_tests/type_conversions.test
index 6e52da59201..791e07c4822 100644
--- a/mysql-test/extra/rpl_tests/type_conversions.test
+++ b/mysql-test/extra/rpl_tests/type_conversions.test
@@ -12,6 +12,13 @@ connection slave;
let $if_is_lossy = `SELECT FIND_IN_SET('ALL_LOSSY', @@SLAVE_TYPE_CONVERSIONS)`;
let $if_is_non_lossy = `SELECT FIND_IN_SET('ALL_NON_LOSSY', @@SLAVE_TYPE_CONVERSIONS)`;
+let $source_type = GEOMETRY;
+let $target_type = GEOMETRY;
+let $source_value = PointFromText('POINT(10 10)');
+let $target_value = PointFromText('POINT(10 10)');
+let $can_convert = 1;
+source extra/rpl_tests/check_type.inc;
+
let $source_type = BIT(1);
let $target_type = BIT(1);
let $source_value = b'1';