diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2021-03-03 10:30:29 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2021-03-18 08:02:48 +0100 |
commit | aa2ff62082c4eb09b1d505af0d0327278c9f7d08 (patch) | |
tree | d02772373165c5c48b3d5a3eadcbc8ccaa0b898b /mysql-test/main/view.test | |
parent | 9186ff88dad674ba4c335a47e9657e5b54efbf69 (diff) | |
download | mariadb-git-aa2ff62082c4eb09b1d505af0d0327278c9f7d08.tar.gz |
MDEV-9077 Use sys schema in bootstrapping, incl. mtr
Diffstat (limited to 'mysql-test/main/view.test')
-rw-r--r-- | mysql-test/main/view.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/view.test b/mysql-test/main/view.test index 78ab6a98ebb..46a71f0a326 100644 --- a/mysql-test/main/view.test +++ b/mysql-test/main/view.test @@ -500,7 +500,7 @@ insert into t1 values(5,'Hello, world of views'); create view v1 as select * from t1; create view v2 as select * from v1; update v2 set col2='Hello, view world'; -select is_updatable from information_schema.views; +select is_updatable from information_schema.views where table_schema <> 'sys'; select * from t1; drop view v2, v1; drop table t1; |