diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-10-22 10:32:54 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-10-22 10:32:54 +0200 |
commit | 548c13073b37a45c2313cf718abb794992c27208 (patch) | |
tree | a5cc6a6fc8c05c403970266f52ae96b244d530e8 | |
parent | 3119e40e635498acdffa0133ded06667a929600d (diff) | |
download | mariadb-git-548c13073b37a45c2313cf718abb794992c27208.tar.gz |
workaround for MySQL BUG#57491
-rw-r--r-- | client/mysqltest.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/mysqltest.cc b/client/mysqltest.cc index 6dd6252c64a..60b7501b0cd 100644 --- a/client/mysqltest.cc +++ b/client/mysqltest.cc @@ -722,6 +722,10 @@ void handle_no_error(struct st_command*); #ifdef EMBEDDED_LIBRARY +/* workaround for MySQL BUG#57491 */ +#undef MY_WME +#define MY_WME 0 + /* attributes of the query thread */ pthread_attr_t cn_thd_attrib; |