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
C++20 fixes
This commit is contained in:
@ -36,7 +36,6 @@
|
||||
#endif
|
||||
#include <cstring>
|
||||
#include <cmath>
|
||||
#include <boost/regex.hpp>
|
||||
|
||||
#include "expressionparser.h"
|
||||
#include "returnedcolumn.h"
|
||||
|
@ -63,7 +63,7 @@ typedef datatypes::Decimal IDB_Decimal;
|
||||
#ifdef POSIX_REGEX
|
||||
typedef regex_t IDB_Regex;
|
||||
#else
|
||||
typedef boost::regex IDB_Regex;
|
||||
typedef std::regex IDB_Regex;
|
||||
#endif
|
||||
|
||||
typedef IDB_Regex CNX_Regex;
|
||||
|
Reference in New Issue
Block a user