fix compile error

This commit is contained in:
lichuang 2021-05-08 18:40:48 +08:00
parent f0640ac09e
commit 4814df777c
1 changed files with 3 additions and 0 deletions

View File

@ -425,6 +425,8 @@ bool isVardataNull(char* val, int32_t type) {
} else {
assert(0);
}
return false;
}
void setNull(char *val, int32_t type, int32_t bytes) { setNullN(val, type, bytes, 1); }
@ -548,6 +550,7 @@ bool isNullN(char *val, int32_t type) {
}
}
return false;
}
static uint8_t nullBool = TSDB_DATA_BOOL_NULL;