Bug #65431 | Error 1430 while selecting from a federated table with index on a bit column | ||
---|---|---|---|
Submitted: | 27 May 2012 2:59 | Modified: | 27 May 2012 7:23 |
Reporter: | Elena Stepanova | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: Federated storage engine | Severity: | S3 (Non-critical) |
Version: | 5.1, 5.5, 5.6 | OS: | Any |
Assigned to: | CPU Architecture: | Any |
[27 May 2012 2:59]
Elena Stepanova
[27 May 2012 7:23]
Valeriy Kravchuk
Thank you for the bug report. Verified with 5.5.26 on Mac OS X: macbook-pro:5.5 openxs$ bin/mysql -uroot test Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.26-debug Source distribution Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> CREATE TABLE t1 (d BIT(32), KEY(d)) ENGINE=MyISAM;Query OK, 0 rows affected (0.06 sec) mysql> CREATE TABLE tfed (d BIT(32), KEY(d)) ENGINE=FEDERATED CONNECTION='mysql://root@127.0.0.1:3306/test/t1'; Query OK, 0 rows affected (0.08 sec) mysql> SELECT d+0 FROM t1 WHERE d < 10000; Empty set (0.00 sec) mysql> SELECT d+0 FROM tfed WHERE d < 10000; ERROR 1030 (HY000): Got error 1430 from storage engine