fix:error in schemaless if error happens

This commit is contained in:
wangmm0220 2022-10-24 09:30:59 +08:00
parent 7de2cdc6c7
commit 2a214e3d25
1 changed files with 1 additions and 1 deletions

View File

@ -2394,7 +2394,7 @@ static int32_t smlParseLine(SSmlHandle *info, char *lines[], char* rawLine, char
code = smlParseJSON(info, rawLine);
}
if (code != TSDB_CODE_SUCCESS) {
uError("SML:0x%" PRIx64 " smlParseJSON failed:%s", info->id, *lines);
uError("SML:0x%" PRIx64 " smlParseJSON failed:%s", info->id, lines?*lines:rawLine);
return code;
}
return code;