opnsense-ports/databases/mysql80-server/files/patch-sql_auth_sql__authorization.cc
Franco Fichtner f2e8a867fa databases/mysql80-server: sync with upstream
Taken from: FreeBSD
2023-10-18 10:45:02 +02:00

13 lines
396 B
C++

--- sql/auth/sql_authorization.cc.orig 2023-03-16 17:22:37 UTC
+++ sql/auth/sql_authorization.cc
@@ -7430,6 +7430,10 @@ bool operator==(const Role_id &a, const std::string &b
return tmp == b;
}
+bool operator==(const Role_id &a, const LEX_CSTRING &b) {
+ return a == to_string(b);
+}
+
bool operator==(const std::pair<Role_id, bool> &a, const std::string &b) {
return a.first == b;
}