You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
MCOL-1510: Add CalpontSelectExecutionPlan::serialize() changes.
This commit is contained in:
@ -478,6 +478,7 @@ void CalpontSelectExecutionPlan::serialize(messageqcpp::ByteStream& b) const
|
|||||||
b << (uint64_t)fLimitStart;
|
b << (uint64_t)fLimitStart;
|
||||||
b << (uint64_t)fLimitNum;
|
b << (uint64_t)fLimitNum;
|
||||||
b << static_cast<const ByteStream::byte>(fHasOrderBy);
|
b << static_cast<const ByteStream::byte>(fHasOrderBy);
|
||||||
|
b << static_cast<const ByteStream::byte>(fSpecHandlerProcessed);
|
||||||
|
|
||||||
b << static_cast<uint32_t>(fSelectSubList.size());
|
b << static_cast<uint32_t>(fSelectSubList.size());
|
||||||
|
|
||||||
@ -645,6 +646,7 @@ void CalpontSelectExecutionPlan::unserialize(messageqcpp::ByteStream& b)
|
|||||||
b >> (uint64_t&)fLimitStart;
|
b >> (uint64_t&)fLimitStart;
|
||||||
b >> (uint64_t&)fLimitNum;
|
b >> (uint64_t&)fLimitNum;
|
||||||
b >> reinterpret_cast< ByteStream::byte&>(fHasOrderBy);
|
b >> reinterpret_cast< ByteStream::byte&>(fHasOrderBy);
|
||||||
|
b >> reinterpret_cast< ByteStream::byte&>(fSpecHandlerProcessed);
|
||||||
|
|
||||||
// for SELECT subquery
|
// for SELECT subquery
|
||||||
b >> size;
|
b >> size;
|
||||||
|
Reference in New Issue
Block a user