Skip to content

Commit 7cbecad

Browse files
committed
MDEV-8664 - plugins.show_all_plugins --embedded fails in buildbot
Failed attempt to load dynamic library with STB_GNU_UNIQUE symbol may corrupt internal dynamic linker data sructures. This looks like libdl bug: https://sourceware.org/bugzilla/show_bug.cgi?id=14577 In embedded mode "show plugins soname" fails to dlopen ha_mroonga.so (which has STB_GNU_UNIQUE) due to undefined reference to wsrep_forced_binlog_format. It crashes later in subsequent call to dlopen() from pthread_exit(). Disabled plugins.show_all_plugins until dlopen() bug is fixed.
1 parent 0cf39f4 commit 7cbecad

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

mysql-test/suite/plugins/t/show_all_plugins.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ if (!$HA_EXAMPLE_SO) { skip requires ha_examples.so; }
33
if (!$LIBDAEMON_EXAMPLE_SO) { skip requires libdaemon_examples.so; }
44
if (!$UDF_EXAMPLE_SO) { skip requires udf_example.so; }
55
if (!$EXAMPLE_KEY_MANAGEMENT_SO) { skip requires example_key_management.so; }
6+
if (`SELECT VERSION() LIKE '%embedded%'`) { skip Disabled for embedded until MDEV-8664 is resolved; }
67

78
flush status;
89
show status like '%libraries%';

0 commit comments

Comments
 (0)