You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-3536 collation
This commit is contained in:
@ -48,6 +48,11 @@
|
||||
#undef min
|
||||
#undef max
|
||||
|
||||
// Because including my_sys.h in a Columnstore header causes too many conflicts
|
||||
struct charset_info_st;
|
||||
typedef const struct charset_info_st CHARSET_INFO;
|
||||
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define __attribute__(x)
|
||||
#endif
|
||||
@ -293,9 +298,11 @@ public:
|
||||
bool autoincrement; //set to true if SYSCOLUMN autoincrement is <20>y<EFBFBD>
|
||||
uint64_t nextvalue; //next autoincrement value
|
||||
uint32_t charsetNumber;
|
||||
const CHARSET_INFO* cs;
|
||||
|
||||
ColType(const ColType& rhs);
|
||||
|
||||
CHARSET_INFO* getCharset();
|
||||
// for F&E use. only serialize necessary info for now
|
||||
void serialize (messageqcpp::ByteStream& b) const
|
||||
{
|
||||
|
Reference in New Issue
Block a user