diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-04-28 16:27:55 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-04-28 16:27:55 +0400 |
commit | ea18b11235448a6416de5ce78792e24861a7a73e (patch) | |
tree | 9ef3c10ff249a81392aa0572dd4039418b28e305 /mysql-test/suite/innodb_gis/r | |
parent | a147eea62c7ad0462f1ee85e50c7628a734c33ae (diff) | |
download | mariadb-git-ea18b11235448a6416de5ce78792e24861a7a73e.tar.gz |
MDEV-12619 UNION creates excessive integer column types for integer literals
Diffstat (limited to 'mysql-test/suite/innodb_gis/r')
-rw-r--r-- | mysql-test/suite/innodb_gis/r/create_spatial_index.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb_gis/r/create_spatial_index.result b/mysql-test/suite/innodb_gis/r/create_spatial_index.result index 572e3ac0d14..9629fa03fef 100644 --- a/mysql-test/suite/innodb_gis/r/create_spatial_index.result +++ b/mysql-test/suite/innodb_gis/r/create_spatial_index.result @@ -1238,7 +1238,7 @@ Table Op Msg_type Msg_text test.tab check status OK DROP TABLE tab; CREATE TABLE tab(c1 POINT NOT NULL,CONSTRAINT tab_const check(c1 > 0) ) ENGINE=InnoDB; -ERROR HY000: Illegal parameter data types geometry and bigint for operation '>' +ERROR HY000: Illegal parameter data types geometry and int for operation '>' CREATE TABLE tab(c1 POINT NOT NULL,CONSTRAINT tab_const check(CAST(c1 AS BINARY) > 0) ) ENGINE=InnoDB; CREATE SPATIAL INDEX idx1 ON tab(c1) ; SHOW CREATE TABLE tab; |