diff options
author | Vicențiu Ciorbaru <cvicentiu@gmail.com> | 2022-09-05 18:07:30 +0300 |
---|---|---|
committer | Vicențiu Ciorbaru <cvicentiu@gmail.com> | 2022-09-20 16:14:43 +0300 |
commit | 27cb96d3627afcbd911faa94e68e18c794177559 (patch) | |
tree | a93be3a4cd0e1f60309d064e72ce4d2a0ccaafed | |
parent | 8c4c607aed017f6658ba96150966a953b6da486b (diff) | |
download | mariadb-git-27cb96d3627afcbd911faa94e68e18c794177559.tar.gz |
UPDATE MDEV-29465 test case for newest version of MariaDB
-rw-r--r-- | mysql-test/suite/roles/roles_tables_priv-29465.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/roles/roles_tables_priv-29465.result b/mysql-test/suite/roles/roles_tables_priv-29465.result index de5f79d98f5..1e0721956b4 100644 --- a/mysql-test/suite/roles/roles_tables_priv-29465.result +++ b/mysql-test/suite/roles/roles_tables_priv-29465.result @@ -8,10 +8,12 @@ grant r_active_column to foo; grant select(a) on some_db.t1 to r_select_column; select * from mysql.tables_priv order by user; Host Db User Table_name Grantor Timestamp Table_priv Column_priv +localhost mysql mariadb.sys global_priv root@localhost 0000-00-00 00:00:00 Select,Delete some_db r_select_column t1 root@localhost 0000-00-00 00:00:00 Select grant insert(a) on some_db.t1 to r_active_column; select * from mysql.tables_priv order by user; Host Db User Table_name Grantor Timestamp Table_priv Column_priv +localhost mysql mariadb.sys global_priv root@localhost 0000-00-00 00:00:00 Select,Delete some_db r_active_column t1 root@localhost 0000-00-00 00:00:00 Insert some_db r_select_column t1 root@localhost 0000-00-00 00:00:00 Select connect con1, localhost, foo,,; |