Skip to content

Commit 6f734d1

Browse files
author
hongzhenliu335
committed
remove not used type and change log level
1 parent 7241214 commit 6f734d1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

source/libs/scalar/src/filter.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4318,7 +4318,7 @@ int32_t fltSclBuildDatumFromValueNode(SFltSclDatum *datum, SColumnNode* pColNode
43184318
break;
43194319
}
43204320
default: {
4321-
qError("not supported type %d when build datum from value node", valNode->node.resType.type);
4321+
qDebug("not supported type %d when build datum from value node", valNode->node.resType.type);
43224322
break;
43234323
}
43244324
}
@@ -4362,8 +4362,6 @@ int32_t fltSclBuildDatumFromBlockSmaValue(SFltSclDatum *datum, uint8_t type, voi
43624362
break;
43634363

43644364
case TSDB_DATA_TYPE_VARBINARY:
4365-
case TSDB_DATA_TYPE_GEOMETRY:
4366-
case TSDB_DATA_TYPE_BLOB:
43674365
case TSDB_DATA_TYPE_VARCHAR: {
43684366
datum->kind = FLT_SCL_DATUM_KIND_VARCHAR;
43694367
datum->i = *(int64_t*)val;
@@ -4376,7 +4374,7 @@ int32_t fltSclBuildDatumFromBlockSmaValue(SFltSclDatum *datum, uint8_t type, voi
43764374
}
43774375
default: {
43784376
datum->kind = FLT_SCL_DATUM_KIND_NULL;
4379-
qError("not supported type %d when build datum from block sma value", type);
4377+
qDebug("not supported type %d when build datum from block sma value", type);
43804378
break;
43814379
}
43824380
}

0 commit comments

Comments
 (0)