1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +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

@@ -61,8 +61,8 @@ int CommandDMLPackage::write(messageqcpp::ByteStream& bytestream)
bytestream << fTimeZone;
bytestream << fTableName;
bytestream << fTableOid;
bytestream << static_cast<const messageqcpp::ByteStream::byte>(fIsAutocommitOn);
bytestream << static_cast<const messageqcpp::ByteStream::byte>(fIsBatchInsert);
bytestream << static_cast<messageqcpp::ByteStream::byte>(fIsAutocommitOn);
bytestream << static_cast<messageqcpp::ByteStream::byte>(fIsBatchInsert);
return retval;
}