Update ColumnsHashingImpl.h

This commit is contained in:
alexey-milovidov 2019-02-06 20:17:59 +03:00 committed by GitHub
parent ba01f7fd77
commit 9a4c4964b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,12 @@ public:
bool isInserted() const { return inserted; }
auto & getMapped() const { return value; }
void setMapped(const Mapped & mapped) { value = cached_value = mapped; }
void setMapped(const Mapped & mapped)
{
cached_value = mapped;
value = mapped;
}
};
template <>