mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
MW-416
Changed return code for replicatio error to TRUE. This is aligned with native mysql convention to return TRUE (defined to 1) or FALSE (defined to 0) from a bool function. This is wrong, but follows the mysql conventiosn, at least...
This commit is contained in:
parent
1841ef1c54
commit
70c23321de
1 changed files with 1 additions and 1 deletions
|
@ -419,7 +419,7 @@ Events::create_event(THD *thd, Event_parse_data *parse_data)
|
|||
DBUG_RETURN(ret);
|
||||
#ifdef WITH_WSREP
|
||||
error:
|
||||
DBUG_RETURN(true);
|
||||
DBUG_RETURN(TRUE);
|
||||
#endif /* WITH_WSREP */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue