Skip to content

Commit 9ba385a

Browse files
committed
Merge 10.2 into 10.3
2 parents 00b70bb + ed691ec commit 9ba385a

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

storage/innobase/handler/ha_innodb.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16159,7 +16159,7 @@ struct ShowStatus {
1615916159
};
1616016160

1616116161
/** Order by m_waits, in descending order. */
16162-
struct OrderByWaits: public std::binary_function<Value, Value, bool>
16162+
struct OrderByWaits
1616316163
{
1616416164
/** @return true if rhs < lhs */
1616516165
bool operator()(

storage/innobase/sync/sync0debug.cc

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*****************************************************************************
22
33
Copyright (c) 2014, 2016, Oracle and/or its affiliates. All Rights Reserved.
4-
Copyright (c) 2017, 2020, MariaDB Corporation.
4+
Copyright (c) 2017, 2022, MariaDB Corporation.
55
66
Portions of this file contain modifications contributed and copyrighted by
77
Google, Inc. Those modifications are gratefully acknowledged and are described
@@ -101,10 +101,6 @@ struct LatchDebug {
101101

102102
/** Comparator for the ThreadMap. */
103103
struct os_thread_id_less
104-
: public std::binary_function<
105-
os_thread_id_t,
106-
os_thread_id_t,
107-
bool>
108104
{
109105
/** @return true if lhs < rhs */
110106
bool operator()(
@@ -390,10 +386,6 @@ struct LatchDebug {
390386
private:
391387
/** Comparator for the Levels . */
392388
struct latch_level_less
393-
: public std::binary_function<
394-
latch_level_t,
395-
latch_level_t,
396-
bool>
397389
{
398390
/** @return true if lhs < rhs */
399391
bool operator()(

0 commit comments

Comments
 (0)