ports/databases/xtrabackup80/files/patch-sql_mdl__context__backup.h
Eugene Grosbein 47f3955374
databases/xtrabackup80: fix build with llvm-19
PORTREVISION not bumped as this fixes build.

PR:		287958
Reported by:	Eugene M. Zheganin (maintainer)
Tested by:	Eugene M. Zheganin (maintainer)
2025-07-02 15:40:25 +07:00

12 lines
377 B
C++

--- sql/mdl_context_backup.h.orig 2023-11-24 10:33:10 UTC
+++ sql/mdl_context_backup.h
@@ -46,7 +46,7 @@ class MDL_context_backup_manager {
/**
Key for uniquely identifying MDL_context in the MDL_context_backup map.
*/
- typedef std::basic_string<uchar> MDL_context_backup_key;
+ typedef std::vector<uchar> MDL_context_backup_key;
class MDL_context_backup;