1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-23680 Assertion `data' failed in crcr32_calc_pclmulqdq

Fix DBUG_ASSERT
This commit is contained in:
Vladislav Vaintroub
2020-09-07 12:08:26 +02:00
parent 2cc9e45693
commit 30ff616403
3 changed files with 12 additions and 1 deletions

View File

@ -1883,6 +1883,11 @@ CREATE TABLE t2 AS SELECT UUID_SHORT() - a FROM t1;
SHOW CREATE TABLE t2;
DROP TABLE t2, t1;
--echo #
--echo # MDEV-23680 Assertion `data' failed in crcr32_calc_pclmulqdq
--echo #
SELECT CRC32(ExtractValue('<a><b/></a>', '/a/b')) AS f;
--echo #
--echo # End of 10.5 tests