mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Remove 'const' that prevents Microsoft VC realize that
Item_trigger_field::set_required_privilege(const bool rw) is an overloading of Settable_routine_parameter::set_required_privilege(bool rw).
This commit is contained in:
parent
f298905dbe
commit
90ffe5392a
2 changed files with 2 additions and 2 deletions
|
@ -5365,7 +5365,7 @@ bool Item_trigger_field::eq(const Item *item, bool binary_cmp) const
|
|||
}
|
||||
|
||||
|
||||
void Item_trigger_field::set_required_privilege(const bool rw)
|
||||
void Item_trigger_field::set_required_privilege(bool rw)
|
||||
{
|
||||
/*
|
||||
Require SELECT and UPDATE privilege if this field will be read and
|
||||
|
|
|
@ -2187,7 +2187,7 @@ public:
|
|||
void cleanup();
|
||||
|
||||
private:
|
||||
void set_required_privilege(const bool rw);
|
||||
void set_required_privilege(bool rw);
|
||||
bool set_value(THD *thd, sp_rcontext *ctx, Item *it);
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue