1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Fix ignored qualifiers warnings (-Wignored-qualifiers)

This commit is contained in:
Alexey Antipovsky
2020-11-10 18:11:14 +00:00
parent 4813838df8
commit f4a6294c95
10 changed files with 17 additions and 17 deletions

View File

@ -480,7 +480,7 @@ void CalpontSelectExecutionPlan::serialize(messageqcpp::ByteStream& b) const
b << fVerID;
b << fTraceFlags;
b << fStatementID;
b << static_cast<const ByteStream::byte>(fDistinct);
b << static_cast<ByteStream::byte>(fDistinct);
b << static_cast<uint8_t>(fOverrideLargeSideEstimate);
// for union
@ -500,8 +500,8 @@ void CalpontSelectExecutionPlan::serialize(messageqcpp::ByteStream& b) const
b << (uint64_t)fLimitStart;
b << (uint64_t)fLimitNum;
b << static_cast<const ByteStream::byte>(fHasOrderBy);
b << static_cast<const ByteStream::byte>(fSpecHandlerProcessed);
b << static_cast<ByteStream::byte>(fHasOrderBy);
b << static_cast<ByteStream::byte>(fSpecHandlerProcessed);
b << reinterpret_cast<uint32_t>(fOrderByThreads);
b << static_cast<uint32_t>(fSelectSubList.size());