提交 da2489dc 编写于 作者: T tickduan

drop comment debug test information

上级 8534238e
CMAKE_MINIMUM_REQUIRED(VERSION 2.8...3.20)
PROJECT(TDengine)
IF (TD_ACCOUNT)
ADD_DEFINITIONS(-D_ACCT)
ENDIF ()
......
......@@ -233,15 +233,8 @@ static FORCE_INLINE int tsCompressFloat(const char *const input, int inputSize,
if (algorithm == ONE_STAGE_COMP) {
return tsCompressFloatImp(input, nelements, output);
} else if (algorithm == TWO_STAGE_COMP) {
//cost_start();
int len = tsCompressFloatImp(input, nelements, buffer);
//cost_end(" td_first_compress");
//show_rate(inputSize, len);
//cost_start();
int ret = tsCompressStringImp(buffer, len, output, outputSize);
//cost_end(" td_second_compress");
//show_rate(inputSize, ret);
return ret;
return tsCompressStringImp(buffer, len, output, outputSize);
} else {
assert(0);
return -1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册