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
commit6cbd760627fb1086993a3790b0355f0c4f946c70 (patch)
tree5490b9cb03a3b587e349e75c224f2f958ae2d927 /mysql-test/extra
parent437b5338fb79f1d777958fec8a5dfe302a98301d (diff)
parent060e3ae739e758920e24e3166f77e565c0329bee (diff)
downloadmariadb-git-6cbd760627fb1086993a3790b0355f0c4f946c70.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';