You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
chore(build) Rocky8 gcc vanilla build fix
This commit is contained in:
committed by
Leonid Fedorov
parent
b79c34b90e
commit
a8d3fff79e
@ -66,7 +66,7 @@ PCREOptions::PCREOptions(execplan::CalpontSystemCatalog::ColType& ct)
|
||||
|
||||
jpcre2::Uint defaultFlags = 0;
|
||||
|
||||
flags = (cs != &my_charset_bin ? (PCRE2_UTF | PCRE2_UCP) : 0) |
|
||||
flags = (!(cs == &my_charset_bin) ? (PCRE2_UTF | PCRE2_UCP) : 0) |
|
||||
((cs.getCharset().state & (MY_CS_BINSORT | MY_CS_CSSORT)) ? 0 : PCRE2_CASELESS) | defaultFlags;
|
||||
|
||||
// Convert text data to utf-8.
|
||||
|
Reference in New Issue
Block a user