Comment 3 for bug 1688698

Revision history for this message
Roel Van de Paar (roel11) wrote : Re: handle_fatal_signal (sig=11) in read_token from digest_add_token

Given the very high frequency of this crash, I reduced 4 additional testcases;

DROP DATABASE test;
INSTALL PLUGIN audit_log SONAME 'audit_log.so';
set collation_connection=utf32_unicode_ci;
PREPARE stmt FROM @str;

DROP DATABASE test;
INSTALL PLUGIN audit_log SONAME 'audit_log.so';
SET collation_connection=utf16_general_ci;
prepare stmt2 from @var2;

DROP DATABASE test;
INSTALL PLUGIN audit_log SONAME 'audit_log.so';
set collation_connection=utf32_unicode_ci;
prepare stmt from @insert_sql;

DROP DATABASE test;
INSTALL PLUGIN audit_log SONAME 'audit_log.so';
SET collation_connection='utf32_bin';
prepare stmt1 from @fvar;