Details
-
Task
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
Description
MySQL 5.6 added the RANDOM_BYTES function: https://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html#function_random-bytes
This is needed for compatibility purposes.
Attachments
Issue Links
- is part of
-
MDEV-28906 MySQL 8.0 desired compatibility
-
- Open
-
- relates to
-
MDEV-29028 Queries using RANDOM_BYTES get stored in query cache
-
- Closed
-
-
MDEV-29029 Index corruption and/or assertion failure upon using RANDOM_BYTES for indexed virtual column
-
- Closed
-
-
MDEV-29099 Missing capitalization in the error message from ER_DATA_OUT_OF_RANGE template
-
- Closed
-
-
MDEV-29108 Assertion `m_using_unique_constraint || m_group_buff <= param->group_buff + param->group_length' failed in Create_tmp_table::finalize
-
- Closed
-
-
MDEV-29154 Excessive warnings upon a call to RANDOM_BYTES
-
- Closed
-
-
MDEV-29185 RANDOM_BYTES as a virtual column function makes binlog non-deterministic
-
- Closed
-
As suggested, I implemented this at the end of bb-10.10-
MDEV-25704and tested for mysql 8,0 compatibility. select random_bytes(0) is our extension. Note the fixme on TIME conversion in the test. Suggestions on implementing this much appreciated.