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
MCOL-1559 remove the #define POSIX_REGEX and thus the use of regexec. Fix up the code changing #ifdef _MSC_VER to #ifdef POSIX_REGEX, where it applies to regexec.
This commit is contained in:
@ -167,10 +167,10 @@ typedef IDB_Decimal CNX_Decimal;
|
||||
* @brief IDB_Regex struct
|
||||
*
|
||||
*/
|
||||
#ifdef _MSC_VER
|
||||
typedef boost::regex IDB_Regex;
|
||||
#else
|
||||
#ifdef POSIX_REGEX
|
||||
typedef regex_t IDB_Regex;
|
||||
#else
|
||||
typedef boost::regex IDB_Regex;
|
||||
#endif
|
||||
|
||||
typedef IDB_Regex CNX_Regex;
|
||||
|
Reference in New Issue
Block a user