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
@ -42,7 +42,7 @@ using namespace querytele;
|
||||
namespace
|
||||
{
|
||||
template <class T>
|
||||
struct deleter : public unary_function<T&, void>
|
||||
struct deleter
|
||||
{
|
||||
void operator()(T& x)
|
||||
{
|
||||
|
@ -197,7 +197,7 @@ class ConstantColumn : public ReturnedColumn
|
||||
/** Constant column on the filte can always be moved into derived table */
|
||||
virtual void setDerivedTable()
|
||||
{
|
||||
fDerivedTable = "*";
|
||||
fDerivedTable = std::string("*");
|
||||
}
|
||||
|
||||
private:
|
||||
|
@ -40,7 +40,7 @@ using namespace std;
|
||||
namespace
|
||||
{
|
||||
template <class T>
|
||||
struct deleter : public unary_function<T&, void>
|
||||
struct deleter
|
||||
{
|
||||
void operator()(T& x)
|
||||
{
|
||||
|
Reference in New Issue
Block a user