mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
This is a development snapshot of upcoming MySQL 8.0. PR: 215738 Submitted by: Mahdi Mokhtari <mokhi64@gmail.com> Reviewed by: matthew, feld Approved by: matthew (mentor), feld Differential Revision: https://reviews.freebsd.org/D9031
11 lines
527 B
C++
11 lines
527 B
C++
--- storage/innobase/dict/dict0stats.cc.orig 2016-03-28 18:06:12 UTC
|
|
+++ storage/innobase/dict/dict0stats.cc
|
|
@@ -139,7 +139,7 @@ then we would store 5,7,10,11,12 in the
|
|
typedef std::vector<ib_uint64_t, ut_allocator<ib_uint64_t> > boundaries_t;
|
|
|
|
/** Allocator type used for index_map_t. */
|
|
-typedef ut_allocator<std::pair<const char*, dict_index_t*> >
|
|
+typedef ut_allocator<std::pair<const char* const, dict_index_t*> >
|
|
index_map_t_allocator;
|
|
|
|
/** Auxiliary map used for sorting indexes by name in dict_stats_save(). */
|