You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-17 01:02:23 +03:00
Got it to build.
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
|
||||
#include "UnlinkTask.h"
|
||||
#include <errno.h>
|
||||
#include "messageFormat.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
@@ -14,6 +16,14 @@ UnlinkTask::~UnlinkTask()
|
||||
{
|
||||
}
|
||||
|
||||
#define check_error(msg) \
|
||||
if (!success) \
|
||||
{ \
|
||||
handleError(msg, errno); \
|
||||
return; \
|
||||
}
|
||||
|
||||
|
||||
void UnlinkTask::run()
|
||||
{
|
||||
bool success;
|
||||
@@ -31,9 +41,11 @@ void UnlinkTask::run()
|
||||
// IOC->unlink(cmd->filename);
|
||||
|
||||
// generic success msg
|
||||
uint32_t *buf32 = buf;
|
||||
uint32_t *buf32 = (uint32_t *) buf;
|
||||
buf32[0] = SM_MSG_START;
|
||||
buf32[1] = 4;
|
||||
buf32[2] = 0;
|
||||
write(buf, 12);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user