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
MCOL-4171 use const ref when passing int128
It saves a pico second or two.
This commit is contained in:
committed by
Roman Nozdrin
parent
2d044fd7f1
commit
5b8aba0005
@ -242,7 +242,7 @@ protected:
|
||||
{
|
||||
fRow.setIntField(v, i);
|
||||
}
|
||||
void setInt128Value(int64_t i, int128_t v)
|
||||
void setInt128Value(int64_t i, const int128_t& v)
|
||||
{
|
||||
fRow.setInt128Field(v, i);
|
||||
}
|
||||
|
Reference in New Issue
Block a user