You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-05 04:50:35 +03:00
Merge branch 'develop' of https://github.com/mariadb-corporation/mariadb-columnstore-engine into develop
This commit is contained in:
@@ -231,7 +231,7 @@ void CrossEngineStep::makeMappings()
|
||||
}
|
||||
|
||||
|
||||
void CrossEngineStep::setField(int i, const char* value, unsigned long length, Row& row)
|
||||
void CrossEngineStep::setField(int i, const char* value, unsigned long length, MYSQL_FIELD* field, Row& row)
|
||||
{
|
||||
CalpontSystemCatalog::ColDataType colType = row.getColType(i);
|
||||
|
||||
@@ -257,8 +257,16 @@ void CrossEngineStep::setField(int i, const char* value, unsigned long length, R
|
||||
CalpontSystemCatalog::ColType ct;
|
||||
ct.colDataType = colType;
|
||||
ct.colWidth = row.getColumnWidth(i);
|
||||
ct.scale = row.getScale(i);
|
||||
ct.precision = row.getPrecision(i);
|
||||
if (colType == CalpontSystemCatalog::DECIMAL)
|
||||
{
|
||||
ct.scale = field->decimals;
|
||||
ct.precision = field->length;
|
||||
}
|
||||
else
|
||||
{
|
||||
ct.scale = row.getScale(i);
|
||||
ct.precision = row.getPrecision(i);
|
||||
}
|
||||
row.setIntField(convertValueNum(value, ct, row.getSignedNullValue(i)), i);
|
||||
}
|
||||
}
|
||||
@@ -494,7 +502,7 @@ void CrossEngineStep::execute()
|
||||
while ((rowIn = mysql->nextRow()) && !cancelled())
|
||||
{
|
||||
for(int i = 0; i < num_fields; i++)
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), fRowDelivered);
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), mysql->getField(i), fRowDelivered);
|
||||
|
||||
addRow(rgDataDelivered);
|
||||
}
|
||||
@@ -514,7 +522,7 @@ void CrossEngineStep::execute()
|
||||
for(int i = 0; i < num_fields; i++)
|
||||
{
|
||||
if (fFe1Column[i] != -1)
|
||||
setField(fFe1Column[i], rowIn[i], mysql->getFieldLength(i), rowFe1);
|
||||
setField(fFe1Column[i], rowIn[i], mysql->getFieldLength(i), mysql->getField(i), rowFe1);
|
||||
}
|
||||
|
||||
if (fFeFilters && fFeInstance->evaluate(rowFe1, fFeFilters.get()) == false)
|
||||
@@ -528,7 +536,7 @@ void CrossEngineStep::execute()
|
||||
for(int i = 0; i < num_fields; i++)
|
||||
{
|
||||
if (fFe1Column[i] == -1)
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), fRowDelivered);
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), mysql->getField(i), fRowDelivered);
|
||||
}
|
||||
|
||||
addRow(rgDataDelivered);
|
||||
@@ -546,7 +554,7 @@ void CrossEngineStep::execute()
|
||||
while ((rowIn = mysql->nextRow()) && !cancelled())
|
||||
{
|
||||
for(int i = 0; i < num_fields; i++)
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), rowFe3);
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), mysql->getField(i), rowFe3);
|
||||
|
||||
fFeInstance->evaluate(rowFe3, fFeSelects);
|
||||
fFeInstance->evaluate(rowFe3, fFeSelects);
|
||||
@@ -577,7 +585,7 @@ void CrossEngineStep::execute()
|
||||
for(int i = 0; i < num_fields; i++)
|
||||
{
|
||||
if (fFe1Column[i] != -1)
|
||||
setField(fFe1Column[i], rowIn[i], mysql->getFieldLength(i), rowFe1);
|
||||
setField(fFe1Column[i], rowIn[i], mysql->getFieldLength(i), mysql->getField(i), rowFe1);
|
||||
}
|
||||
|
||||
if (fFeFilters && fFeInstance->evaluate(rowFe1, fFeFilters.get()) == false)
|
||||
@@ -591,7 +599,7 @@ void CrossEngineStep::execute()
|
||||
for(int i = 0; i < num_fields; i++)
|
||||
{
|
||||
if (fFe1Column[i] == -1)
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), rowFe3);
|
||||
setField(i, rowIn[i], mysql->getFieldLength(i), mysql->getField(i), rowFe3);
|
||||
}
|
||||
|
||||
fFeInstance->evaluate(rowFe3, fFeSelects);
|
||||
|
||||
@@ -64,14 +64,17 @@ public:
|
||||
{
|
||||
char** row = mysql_fetch_row(fRes);
|
||||
fieldLengths = mysql_fetch_lengths(fRes);
|
||||
fFields = mysql_fetch_fields(fRes);
|
||||
return row;
|
||||
}
|
||||
long getFieldLength(int field) { return fieldLengths[field]; }
|
||||
MYSQL_FIELD* getField(int field) { return &fFields[field]; }
|
||||
const std::string& getError() { return fErrStr; }
|
||||
|
||||
private:
|
||||
MYSQL* fCon;
|
||||
MYSQL_RES* fRes;
|
||||
MYSQL_FIELD* fFields;
|
||||
std::string fErrStr;
|
||||
unsigned long *fieldLengths;
|
||||
};
|
||||
@@ -157,7 +160,7 @@ protected:
|
||||
virtual void makeMappings();
|
||||
virtual void addFilterStr(const std::vector<const execplan::Filter*>&, const std::string&);
|
||||
virtual std::string makeQuery();
|
||||
virtual void setField(int, const char*, unsigned long, rowgroup::Row&);
|
||||
virtual void setField(int, const char*, unsigned long, MYSQL_FIELD*, rowgroup::Row&);
|
||||
inline void addRow(rowgroup::RGData &);
|
||||
//inline void addRow(boost::shared_array<uint8_t>&);
|
||||
virtual int64_t convertValueNum(
|
||||
|
||||
Reference in New Issue
Block a user