You've already forked mariadb-columnstore-engine
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:
@ -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());
|
||||
}
|
||||
|
Reference in New Issue
Block a user