fix(query): fix syntax error.

This commit is contained in:
Haojun Liao 2022-08-01 23:43:01 +08:00
parent 6671420e49
commit fe55671253
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ int32_t addTagPseudoColumnData(SReadHandle* pHandle, SExprInfo* pPseudoExpr, int
colDataAppendNItems(pColInfoData, 0, data, pBlock->info.rows); colDataAppendNItems(pColInfoData, 0, data, pBlock->info.rows);
} else { // todo opt for json tag } else { // todo opt for json tag
for (int32_t i = 0; i < pBlock->info.rows; ++i) { for (int32_t i = 0; i < pBlock->info.rows; ++i) {
colDataAppend(pColInfoData, i, data, false)); colDataAppend(pColInfoData, i, data, false);
} }
} }