1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

MCOL-4171 use const ref when passing int128

It saves a pico second or two.
This commit is contained in:
David Hall
2020-08-11 17:06:20 -05:00
committed by Roman Nozdrin
parent 2d044fd7f1
commit 5b8aba0005

View File

@@ -242,7 +242,7 @@ protected:
{ {
fRow.setIntField(v, i); 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); fRow.setInt128Field(v, i);
} }