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
A clean-up for MCOL-4791 Fix ColumnCommand fudged data type format to clearly identify CHAR vs VARCHAR
The "mIsDict" member was not copied in ColumnCommand::duplicate. Thus store() erroneously entered colCompare() for dictionary commands.
This commit is contained in:
@ -829,10 +829,7 @@ void ColumnCommand::duplicate(ColumnCommand* cc)
|
||||
cc->_isScan = _isScan;
|
||||
cc->traceFlags = traceFlags;
|
||||
cc->filterString = filterString;
|
||||
cc->colType.colDataType = colType.colDataType;
|
||||
cc->colType.compressionType = colType.compressionType;
|
||||
cc->colType.colWidth = colType.colWidth;
|
||||
cc->colType.charsetNumber = colType.charsetNumber;
|
||||
cc->colType = colType;
|
||||
cc->BOP = BOP;
|
||||
cc->filterCount = filterCount;
|
||||
cc->fFilterFeeder = fFilterFeeder;
|
||||
|
Reference in New Issue
Block a user