1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-18 13:54:11 +03:00

Added tracing output

This commit is contained in:
Patrick LeBlanc
2019-02-05 15:44:00 -06:00
parent 9563e2f989
commit 326a4e412c
13 changed files with 63 additions and 2 deletions

View File

@@ -37,6 +37,10 @@ bool TruncateTask::run()
check_error("TruncateTask read", false);
truncate_cmd *cmd = (truncate_cmd *) buf;
#ifdef SM_TRACE
cout << "truncate " << cmd->filename << " newlength " << cmd->length << endl;
#endif
int err = ioc->truncate(cmd->filename, cmd->length);
if (err)
{