Hi!

On 07.12.2010 01:15, [email protected] wrote:
------------------------------------------------------------
revno: 2988
fixes bug(s): https://launchpad.net/bugs/686184
committer: Vladislav Vaintroub<[email protected]>
branch nick: 5.1
timestamp: Mon 2010-12-06 22:34:50 +0100
message:
   Fix LP Bug#686184 - merge_debug test fails.
   The reason for failure is that DBUG_EXECUTE_IF in mi_open()
   only worked for Unix-formatted file names, due to strstr(name, "/crashed")

   The fix change strstr() above to strstr(name, "crashed"), to it can work with
   Windows file names as well.
modified:
   storage/myisam/mi_open.c
(M)Aria engine also has code like you fixed above in ma_open.c:

    DBUG_EXECUTE_IF("maria_pretend_crashed_table_on_open",
                    if (strstr(name, "/t1"))
                    {
                      my_errno= HA_ERR_CRASHED;
                      goto err;
                    });

Should it be also fixed?

_______________________________________________
Mailing list: https://launchpad.net/~maria-developers
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~maria-developers
More help   : https://help.launchpad.net/ListHelp

Reply via email to