Comment 1 for bug 1149848

Revision history for this message
Federico Razzoli (santec) wrote :

The problem was that we had MEMORY tables and 1 trigger, which were needed to make some tests pass.
Triggers cannot be created whithin a Stored Routine, so we created everything at the moment of installation. But doing so, MEMORY tables die at server shutdown. And storage engines different from MEMORY are not fast enough for that test.

Now I create within before_all_tests everything I can create there. And at the installation time, I create a unused non-MEMORY table, with a trigger attached.

Dont change this anymore.