You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
get rid of getbinaryfield in ranking window functions
This commit is contained in:
@ -831,7 +831,9 @@ bool EqualCompData::operator()(Row::Pointer a, Row::Pointer b)
|
|||||||
}
|
}
|
||||||
else if (fRow1.getColumnWidth(*i) == datatypes::MAXDECIMALWIDTH)
|
else if (fRow1.getColumnWidth(*i) == datatypes::MAXDECIMALWIDTH)
|
||||||
{
|
{
|
||||||
eq = (*fRow1.getBinaryField<int128_t>(*i) == *fRow2.getBinaryField<int128_t>(*i));
|
datatypes::TSInt128 left = fRow1.getTSInt128Field(*i);
|
||||||
|
datatypes::TSInt128 right = fRow2.getTSInt128Field(*i);
|
||||||
|
eq = left.getValue() == right.getValue();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user