diff options
author | Alfranio Correia <alfranio.correia@sun.com> | 2009-12-23 12:02:57 +0000 |
---|---|---|
committer | Alfranio Correia <alfranio.correia@sun.com> | 2009-12-23 12:02:57 +0000 |
commit | 62b10996f2252fa302945d60279f83e1aa7db9e0 (patch) | |
tree | 534318e567d8970fe64289e21f7a96c2636facae /mysql-test/extra | |
parent | 61813cb0a816ee72c14d6fa5c92bc30de9e3f7cd (diff) | |
parent | 51dc566eb63dfae5407304e38d8c9f8f90d01259 (diff) | |
download | mariadb-git-62b10996f2252fa302945d60279f83e1aa7db9e0.tar.gz |
merge mysql-5.1-rep+2 --> mysql-5.1-rep+2-delivery1
Diffstat (limited to 'mysql-test/extra')
-rw-r--r-- | mysql-test/extra/rpl_tests/type_conversions.test | 7 |
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'; |