MySQL Forums
Forum List  »  Falcon

Bug with Tablespaces and Falcon Engine?
Posted by: Marian Lander
Date: May 01, 2008 02:52PM

Hi there...

I have compile from source Mysql 6.x - alpha.

I am basically testing 'Falcon' engine, and I was creating a new table as a child of a tablespace that didn't really exists but I though the tablespace was already create. Well Mysql instead of telling me something like 'tablespace not found' or 'datafile not found' it just restart himself ...

Example :

mysql> create table sueldos(id int auto_increment, ganancias decimal(64,3), primary key(id)) engine = falcon tablespace cucu default charset = utf8;
ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql> show tables;
ERROR 2006 (HY000): MySQL server has gone away
No connection. Trying to reconnect...
Connection id: 1
Current database: primaria

And if I want to verify if at least my new table did create :

mysql> show tables;
+--------------------+
| Tables_in_primaria |
+--------------------+
| empleados |
| sueldos |
+--------------------+
2 rows in set (0.00 sec)

mysql> describe sueldos;
ERROR 1146 (42S02): Table 'primaria.sueldos' doesn't exist
mysql> drop table sueldos;
Query OK, 0 rows affected (0.00 sec)

I repeat the same proccess for a few times and get the same result one and again. If this some sort of Falcon bug? it is supposed to just tell me 'Hey the tablespace is not created!' but not disconnect the whole Mysql server and load again ....

Options: ReplyQuote


Subject
Written By
Posted
Bug with Tablespaces and Falcon Engine?
May 01, 2008 02:52PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.