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
feat(bytestream,serdes): Distribute BS buf size data type change to avoid implicit data type narrowing
This commit is contained in:
@ -16,6 +16,7 @@
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
MA 02110-1301, USA. */
|
||||
|
||||
#include "bytestream.h"
|
||||
#define _CRT_RAND_S // for win rand_s
|
||||
#include <unistd.h>
|
||||
#include <boost/filesystem.hpp>
|
||||
@ -804,7 +805,7 @@ uint64_t JoinPartition::writeByteStream(int which, ByteStream& bs)
|
||||
}
|
||||
|
||||
uint64_t ret = 0;
|
||||
size_t len = bs.length();
|
||||
BSSizeType len = bs.length();
|
||||
idbassert(len != 0);
|
||||
|
||||
fs.seekp(offset);
|
||||
|
Reference in New Issue
Block a user