1
0
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:
Alexander Barkov
2021-12-28 17:43:40 +04:00
parent e4b302e436
commit 62e320c86d
82 changed files with 2374 additions and 2319 deletions

View File

@@ -1,10 +1,10 @@
SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_FT_INDEX_TABLE;
Table Create Table
INNODB_FT_INDEX_TABLE CREATE TEMPORARY TABLE `INNODB_FT_INDEX_TABLE` (
`WORD` varchar(337) NOT NULL DEFAULT '',
`FIRST_DOC_ID` bigint(21) unsigned NOT NULL DEFAULT 0,
`LAST_DOC_ID` bigint(21) unsigned NOT NULL DEFAULT 0,
`DOC_COUNT` bigint(21) unsigned NOT NULL DEFAULT 0,
`DOC_ID` bigint(21) unsigned NOT NULL DEFAULT 0,
`POSITION` bigint(21) unsigned NOT NULL DEFAULT 0
`WORD` varchar(337) NOT NULL,
`FIRST_DOC_ID` bigint(21) unsigned NOT NULL,
`LAST_DOC_ID` bigint(21) unsigned NOT NULL,
`DOC_COUNT` bigint(21) unsigned NOT NULL,
`DOC_ID` bigint(21) unsigned NOT NULL,
`POSITION` bigint(21) unsigned NOT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8