You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Function calls are using SET instead of SELECT (#521)
* Function calls are using SET instead of SELECT
I only found this bug but could be others:
```
mysql> SET audit_log_filter_set_filter('test', @filter);
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '('test', @filter)' at line 1
mysql> select audit_log_filter_set_filter('test', @filter);
+----------------------------------------------+
| audit_log_filter_set_filter('test', @filter) |
+----------------------------------------------+
| OK |
+----------------------------------------------+
1 row in set (0.01 sec)
* Remove filtername
0 commit comments