You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Fix some GCC-12 Build errors
This commit is contained in:
committed by
Leonid Fedorov
parent
678bd6c91e
commit
b936ed8b2e
@ -124,7 +124,7 @@ class ColExtInfEntry
|
||||
* the last input Row number in the extent, as the key.
|
||||
*/
|
||||
//------------------------------------------------------------------------------
|
||||
struct uint64Hasher : public std::unary_function<RID, std::size_t>
|
||||
struct uint64Hasher
|
||||
{
|
||||
std::size_t operator()(RID val) const
|
||||
{
|
||||
|
@ -101,7 +101,7 @@ class AllocExtEntry
|
||||
* the corresponding column OID as the key.
|
||||
*/
|
||||
//------------------------------------------------------------------------------
|
||||
struct AllocExtHasher : public std::unary_function<OID, std::size_t>
|
||||
struct AllocExtHasher
|
||||
{
|
||||
std::size_t operator()(OID val) const
|
||||
{
|
||||
|
@ -149,7 +149,7 @@ struct WEClientRunner
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct QueueShutdown : public unary_function<T&, void>
|
||||
struct QueueShutdown
|
||||
{
|
||||
void operator()(T& x)
|
||||
{
|
||||
|
Reference in New Issue
Block a user