Hi Harsh,
I haven’t tried copying the files in. I would be interested in your experiences! What I have done is created tables within Infobright that have an ENGINE=MYISAM, and then populated them.
Some thoughts on when the IB optimizer will be used versus the MySQL optimizer:
If you query against a non-IB table, the MySQL optimizer will be used.
If you query against an IB and a non-IB table, the MySQL optimizer will be used.
If you query against an IB table, or multiple IB tables, then the Infobright optimizer will be used, unless you are using functions that have not yet been optimized for Infobright (there’s other posts regarding this in the forums).
When your query runs, you can tell if it goes to the MySQL optimizer if you see a warning count greater than zero returned, and if you issue a SHOW WARNINGS you should see a message indicating that the MySQL optimizer was used.
I hope this helps.
John