summaryrefslogtreecommitdiff
path: root/storage/mroonga
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2021-12-28 17:43:40 +0400
committerAlexander Barkov <bar@mariadb.com>2022-01-25 10:31:55 +0400
commit62e320c86dedce0624d56d76a72d2407fc3f3a11 (patch)
tree4b50325585dee662aec6bb93416f7f3e8f382760 /storage/mroonga
parente4b302e436c0a1e0d477a8e8e8e513112fd3ec7f (diff)
downloadmariadb-git-62e320c86dedce0624d56d76a72d2407fc3f3a11.tar.gz
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
Diffstat (limited to 'storage/mroonga')
-rw-r--r--storage/mroonga/mysql-test/mroonga/storage/r/i_s.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/mroonga/mysql-test/mroonga/storage/r/i_s.result b/storage/mroonga/mysql-test/mroonga/storage/r/i_s.result
index b403eccf1ab..80a26a1c74b 100644
--- a/storage/mroonga/mysql-test/mroonga/storage/r/i_s.result
+++ b/storage/mroonga/mysql-test/mroonga/storage/r/i_s.result
@@ -1,7 +1,7 @@
SHOW CREATE TABLE INFORMATION_SCHEMA.MROONGA_STATS;
Table Create Table
Mroonga_stats CREATE TEMPORARY TABLE `Mroonga_stats` (
- `VERSION` varchar(40) NOT NULL DEFAULT '',
- `rows_written` int(11) NOT NULL DEFAULT 0,
- `rows_read` int(11) NOT NULL DEFAULT 0
+ `VERSION` varchar(40) NOT NULL,
+ `rows_written` int(11) NOT NULL,
+ `rows_read` int(11) NOT NULL
) ENGINE=MEMORY DEFAULT CHARSET=utf8