Skip to content

Commit

Permalink
executor: cleanup entries from mysql.db on revoke (#38370)
Browse files Browse the repository at this point in the history
close #38363
  • Loading branch information
dveeden committed Oct 11, 2022
1 parent c033b87 commit 8c9f5cf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
11 changes: 11 additions & 0 deletions executor/revoke.go
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,17 @@ func (e *RevokeExec) revokeDBPriv(internalSession sessionctx.Context, priv *ast.
}
sqlexec.MustFormatSQL(sql, " WHERE User=%? AND Host=%? AND DB=%?", userName, host, dbName)

_, err = internalSession.(sqlexec.SQLExecutor).ExecuteInternal(ctx, sql.String())
if err != nil {
return err
}

sql = new(strings.Builder)
sqlexec.MustFormatSQL(sql, "DELETE FROM %n.%n WHERE User=%? AND Host=%? AND DB=%?", mysql.SystemDB, mysql.DBTable, userName, host, dbName)

for _, v := range append(mysql.AllDBPrivs, mysql.GrantPriv) {
sqlexec.MustFormatSQL(sql, " AND %n='N'", v.ColumnString())
}
_, err = internalSession.(sqlexec.SQLExecutor).ExecuteInternal(ctx, sql.String())
return err
}
Expand Down
8 changes: 7 additions & 1 deletion executor/revoke_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@ func TestRevokeDBScope(t *testing.T) {

tk.MustQuery(check).Check(testkit.Rows("Y"))
tk.MustExec(sql)
tk.MustQuery(check).Check(testkit.Rows("N"))
if v == mysql.AllDBPrivs[len(mysql.AllDBPrivs)-1] {
// When all privileges are set to 'N', then the record should be removed as well.
// https://github.com/pingcap/tidb/issues/38363
tk.MustQuery(check).Check(testkit.Rows())
} else {
tk.MustQuery(check).Check(testkit.Rows("N"))
}
}
}

Expand Down

0 comments on commit 8c9f5cf

Please sign in to comment.