fix(query): not return 0 for count by default.

This commit is contained in:
Haojun Liao 2023-02-10 18:30:01 +08:00
parent 6839ed22f2
commit 8b481e3d53
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ int32_t tsCompressMsgSize = -1;
int32_t tsCompressColData = -1;
// count/hyperloglog function always return values in case of all NULL data or Empty data set.
int32_t tsCountAlwaysReturnValue = 1;
int32_t tsCountAlwaysReturnValue = 0;
// 10 ms for sliding time, the value will changed in case of time precision changed
int32_t tsMinSlidingTime = 10;