summaryrefslogtreecommitdiff
path: root/sql/set_var.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/set_var.h')
-rw-r--r--sql/set_var.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/set_var.h b/sql/set_var.h
index 1cac2953a21..699f320bbd9 100644
--- a/sql/set_var.h
+++ b/sql/set_var.h
@@ -688,6 +688,8 @@ public:
virtual ~set_var_base() {}
virtual int check(THD *thd)=0; /* To check privileges etc. */
virtual int update(THD *thd)=0; /* To set the value */
+ /* light check for PS */
+ virtual int light_check(THD *thd) { return check(thd); }
};
@@ -728,6 +730,7 @@ public:
}
int check(THD *thd);
int update(THD *thd);
+ int light_check(THD *thd);
};
@@ -742,6 +745,7 @@ public:
{}
int check(THD *thd);
int update(THD *thd);
+ int light_check(THD *thd);
};
/* For SET PASSWORD */