提交 31b51142 编写于 作者: A Alex Duan

fix(mdb): compatible v2.0 2.2 mdb file format and ignore blank1

上级 157caa36
...@@ -335,11 +335,10 @@ bool appendTagsFilter(SSqlObj* pSql) { ...@@ -335,11 +335,10 @@ bool appendTagsFilter(SSqlObj* pSql) {
} }
// check tags is blank // check tags is blank
size_t len = strlen(pTscObj->tags); char* p1 = pTscObj->tags;
char* p = pTscObj->tags;
bool blank = true; bool blank = true;
while(*p != 0) { while(*p1 != 0) {
if(*p != ' ') { if(*p1 != ' ') {
blank = false; blank = false;
break; break;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册