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-4791 Fix ColumnCommand fudged data type format to clearly identify CHAR vs VARCHAR
This commit is contained in:
@ -49,11 +49,11 @@ PassThruCommandJL::PassThruCommandJL(const PassThruStep& p)
|
||||
{
|
||||
OID = p.oid();
|
||||
colName = p.name();
|
||||
colWidth = p.colWidth;
|
||||
colWidth = p.colType().colWidth;
|
||||
|
||||
// cout << "PassThru col width = " << (int) colWidth << " for OID " << OID << endl;
|
||||
/* Is this ever a dictionary column? */
|
||||
if (p.isDictColumn)
|
||||
if (p.isDictCol())
|
||||
tableColumnType = TableColumn::STRING;
|
||||
else
|
||||
switch (colWidth)
|
||||
|
Reference in New Issue
Block a user