mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-18918 SQL mode EMPTY_STRING_IS_NULL breaks RBR upon CREATE TABLE .. SELECT
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
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_CMPMEM_RESET;
|
||||
Table Create Table
|
||||
INNODB_CMPMEM_RESET CREATE TEMPORARY TABLE `INNODB_CMPMEM_RESET` (
|
||||
`page_size` int(5) NOT NULL DEFAULT 0,
|
||||
`buffer_pool_instance` int(11) NOT NULL DEFAULT 0,
|
||||
`pages_used` int(11) NOT NULL DEFAULT 0,
|
||||
`pages_free` int(11) NOT NULL DEFAULT 0,
|
||||
`relocation_ops` bigint(21) NOT NULL DEFAULT 0,
|
||||
`relocation_time` int(11) NOT NULL DEFAULT 0
|
||||
`page_size` int(5) NOT NULL,
|
||||
`buffer_pool_instance` int(11) NOT NULL,
|
||||
`pages_used` int(11) NOT NULL,
|
||||
`pages_free` int(11) NOT NULL,
|
||||
`relocation_ops` bigint(21) NOT NULL,
|
||||
`relocation_time` int(11) NOT NULL
|
||||
) ENGINE=MEMORY DEFAULT CHARSET=utf8
|
||||
|
Reference in New Issue
Block a user