aboutsummaryrefslogtreecommitdiff
path: root/modules/pkgs/mariadb/MDEV-10463.patch
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2017-09-19 17:46:31 +0300
committerIgor Pashev <pashev.igor@gmail.com>2017-09-19 17:46:31 +0300
commit77b54dadb2dbbb1cf22b1402ae2ff76d6b6bbaec (patch)
tree1959878532a7891596059ed99feeb7b97e260409 /modules/pkgs/mariadb/MDEV-10463.patch
parent48322807bcba8f7934a0682f21226436da9b46b8 (diff)
downloadnixsap-77b54dadb2dbbb1cf22b1402ae2ff76d6b6bbaec.tar.gz
mariadb: 10.1.24 -> 10.1.26
Diffstat (limited to 'modules/pkgs/mariadb/MDEV-10463.patch')
-rw-r--r--modules/pkgs/mariadb/MDEV-10463.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/modules/pkgs/mariadb/MDEV-10463.patch b/modules/pkgs/mariadb/MDEV-10463.patch
deleted file mode 100644
index c094257..0000000
--- a/modules/pkgs/mariadb/MDEV-10463.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/sql/sql_show.cc b/sql/sql_show.cc
-index ae38745..73edb18 100644
---- a/sql/sql_show.cc
-+++ b/sql/sql_show.cc
-@@ -4850,6 +4850,7 @@ int fill_schema_schemata(THD *thd, TABLE_LIST *tables, COND *cond)
- TABLE *table= tables->table;
- #ifndef NO_EMBEDDED_ACCESS_CHECKS
- Security_context *sctx= thd->security_ctx;
-+ ulong db_access= sctx->db_access;
- #endif
- DBUG_ENTER("fill_schema_shemata");
-
-@@ -4891,9 +4892,20 @@ int fill_schema_schemata(THD *thd, TABLE_LIST *tables, COND *cond)
- continue;
- }
- #ifndef NO_EMBEDDED_ACCESS_CHECKS
-- if (sctx->master_access & (DB_ACLS | SHOW_DB_ACL) ||
-- acl_get(sctx->host, sctx->ip, sctx->priv_user, db_name->str, 0) ||
-- !check_grant_db(thd, db_name->str))
-+ if (test_all_bits(sctx->master_access, DB_ACLS))
-+ db_access= DB_ACLS;
-+ else
-+ {
-+ db_access= acl_get(sctx->host, sctx->ip, sctx->priv_user, db_name->str, FALSE);
-+ if (sctx->priv_role[0])
-+ {
-+ /* include a possible currently set role for access */
-+ db_access|= acl_get("", "", sctx->priv_role, db_name->str, FALSE);
-+ }
-+ }
-+ if ((sctx->master_access & SHOW_DB_ACL) ||
-+ (db_access & DB_ACLS) ||
-+ !check_grant_db(thd, db_name->str))
- #endif
- {
- load_db_opt_by_name(thd, db_name->str, &create);