summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_column.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2017-03-02 15:36:18 +0100
committerSergei Golubchik <serg@mariadb.org>2017-03-10 18:21:24 +0100
commit48b1d175345caa3c644597044751906a04106b91 (patch)
tree3dca0a0fda49aed13c12899a0bd5d5993d6f4607 /mysql-test/r/partition_column.result
parent25c32c89f14cba402a42a61a8a371ce515610899 (diff)
downloadmariadb-git-48b1d175345caa3c644597044751906a04106b91.tar.gz
MDEV-11943 I_S.TABLES inconsistencies with tables with unknown storage engine
Make SELECT <columns> FROM I_S.TABLES behave identically independently from whether <columns> require opening the table in engine or <columns> can be filled with only opening the frm. In particular, fill_schema_table_from_frm() should not silently skip frms with unknown engine, but should fill the I_S.TABLES row with NULLs just like fill_schema_table_by_open() does.
Diffstat (limited to 'mysql-test/r/partition_column.result')
-rw-r--r--mysql-test/r/partition_column.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/partition_column.result b/mysql-test/r/partition_column.result
index a494656a6a6..f18e9b39e1e 100644
--- a/mysql-test/r/partition_column.result
+++ b/mysql-test/r/partition_column.result
@@ -540,7 +540,7 @@ a b
drop table t1;
create table t1 as select to_seconds(null) as to_seconds;
select data_type from information_schema.columns
-where column_name='to_seconds';
+where table_schema='test' and column_name='to_seconds';
data_type
int
drop table t1;