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

Reordered a couple params.

This commit is contained in:
Patrick LeBlanc
2019-01-29 09:53:18 -06:00
parent 918e10a9ff
commit a9a5c2ebb7

View File

@ -181,7 +181,7 @@ int SMComm::truncate(const string &filename, const off64_t length)
ByteStream *response = buffers.getByteStream();
int err;
*command << (uint8_t) storagemanager::TRUNCATE << filename << length;
*command << (uint8_t) storagemanager::TRUNCATE << length << filename;
err = sockets.send_recv(*command, response);
if (err)
common_exit(command, response, err);