Skip to content
Permalink
Browse files
Cleanup tests for MDEV-13049 Querying INFORMATION_SCHEMA becomes slow…
… in MariaDB 10.1
  • Loading branch information
abarkov committed Nov 2, 2017
1 parent 3a9b7f4 commit 9ada5a3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
@@ -6,7 +6,7 @@ drop database if exists `
CREATE DATABASE `��ݺ�`;
CREATE DATABASE `��{��`;
CREATE DATABASE `�\�\�\`;
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;
schema_name
information_schema
mysql
@@ -7,7 +7,7 @@ SET character_set_server = ucs2;
CREATE DATABASE `�ƎΎݎ���`;
CREATE DATABASE `���ܸ�`;
CREATE DATABASE `��܏�ݏ��`;
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;
schema_name
information_schema
mysql
@@ -6,7 +6,7 @@ SET character_set_database = ujis;
CREATE DATABASE `�ƎΎݎ���`;
CREATE DATABASE `���ܸ�`;
CREATE DATABASE `��܏�ݏ��`;
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;
schema_name
information_schema
mysql
@@ -6,7 +6,7 @@ SET character_set_database = utf8;
CREATE DATABASE `ニホンゴ`;
CREATE DATABASE `日本語`;
CREATE DATABASE `龔龖龗`;
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;
schema_name
information_schema
mysql
@@ -16,7 +16,7 @@ CREATE DATABASE `
CREATE DATABASE `��{��`;
CREATE DATABASE `�\�\�\`;

SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;

USE `��ݺ�`;
USE `��{��`;
@@ -18,7 +18,7 @@ CREATE DATABASE `
CREATE DATABASE `���ܸ�`;
CREATE DATABASE `��܏�ݏ��`;

SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;

USE `�ƎΎݎ���`;
USE `���ܸ�`;
@@ -17,7 +17,7 @@ CREATE DATABASE `
CREATE DATABASE `���ܸ�`;
CREATE DATABASE `��܏�ݏ��`;

SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;

USE `�ƎΎݎ���`;
USE `���ܸ�`;
@@ -16,7 +16,7 @@ CREATE DATABASE `ニホンゴ`;
CREATE DATABASE `日本語`;
CREATE DATABASE `龔龖龗`;

SELECT schema_name from information_schema.schemata where schema_name <> 'mtr';
SELECT schema_name from information_schema.schemata where schema_name <> 'mtr' ORDER BY schema_name;

USE `ニホンゴ`;
USE `日本語`;

0 comments on commit 9ada5a3

Please sign in to comment.