mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
The 10.5 version of the patch. Removing DEFAULT from INFORMATION_SCHEMA columns. DEFAULT in read-only tables is rather meaningless. Upgrade should go smoothly. Also fixes: MDEV-20254 Problems with EMPTY_STRING_IS_NULL and I_S tables
9 lines
363 B
Plaintext
9 lines
363 B
Plaintext
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_LOCK_WAITS;
|
|
Table Create Table
|
|
INNODB_LOCK_WAITS CREATE TEMPORARY TABLE `INNODB_LOCK_WAITS` (
|
|
`requesting_trx_id` bigint(21) unsigned NOT NULL,
|
|
`requested_lock_id` varchar(81) NOT NULL,
|
|
`blocking_trx_id` bigint(21) unsigned NOT NULL,
|
|
`blocking_lock_id` varchar(81) NOT NULL
|
|
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|