fix: a small bug
This commit is contained in:
parent
d9db5b015c
commit
2910ae3afb
|
@ -4032,7 +4032,8 @@ int32_t tValueColumnAppend(SValueColumn *valCol, const SValue *value) {
|
|||
return code;
|
||||
}
|
||||
} else {
|
||||
return tBufferPut(&valCol->data, &value->val, tDataTypes[value->type].bytes);
|
||||
code = tBufferPut(&valCol->data, &value->val, tDataTypes[value->type].bytes);
|
||||
if (code) return code;
|
||||
}
|
||||
valCol->numOfValues++;
|
||||
|
||||
|
|
Loading…
Reference in New Issue