1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4456 Fix for bulk insertion of BLOBs

This commit is contained in:
Roman Nozdrin
2021-01-20 11:27:56 +00:00
parent 704f196a83
commit 0b6dbcd4a8

View File

@ -375,7 +375,7 @@ public:
const char* ptr = value.ptr();
for (uint32_t i = 0; i < value.length(); i++)
{
fprintf(ci.filePtr(), "%02x", *(uint8_t*)ptr+i);
fprintf(ci.filePtr(), "%02x", *(uint8_t*)(ptr+i));
}
fprintf(ci.filePtr(), "%c", ci.delimiter());
}