[MDEV-2548] LP:534626 - MyISAM table created in MariaDB not readable by MySQL Created: 2010-03-08 Updated: 2012-10-04 Resolved: 2012-10-04 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | Harrison Fisk (Inactive) | Assignee: | Unassigned |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | Launchpad | ||
| Attachments: |
|
| Description |
|
I created a simple table in MariaDB and then when I tried to access it in MySQL, the table is reported as damaged and can't be repaired. Versions used were 5.1.42 of each on Linux x86. Script: In MariaDB: use test; Shutdown MariaDB and point MySQL at the same datadir. In MySQL: use test; Errors from MySQL: mysql> select * from t1;
--------
-------- |
| Comments |
| Comment by Hakan Küçükyılmaz (Inactive) [ 2010-03-09 ] | ||||||||||||||||
|
Re: MyISAM table created in MariaDB not readable by MySQL bzr branch -rtag:mysql-5.1.42 mysql-server-local-master/ mysql-5.1.42 On Linux: Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> create schema test; use test; Database changed MariaDB [test]> INSERT INTO t1 values ('aaaa', 10); MariaDB [test]> SELECT * FROM t1;
-----
----- MariaDB [test]> Start MySQL 5.1.42 Welcome to the MySQL monitor. Commands end with ; or \g. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SELECT * FROM t1;
--------
-------- | ||||||||||||||||
| Comment by Hakan Küçükyılmaz (Inactive) [ 2010-03-09 ] | ||||||||||||||||
|
Re: MyISAM table created in MariaDB not readable by MySQL | ||||||||||||||||
| Comment by Colin Charles [ 2010-03-09 ] | ||||||||||||||||
|
Re: MyISAM table created in MariaDB not readable by MySQL | ||||||||||||||||
| Comment by Rasmus Johansson (Inactive) [ 2010-06-28 ] | ||||||||||||||||
|
Launchpad bug id: 534626 |