Skip to content

Commit fd02581

Browse files
author
chengyitian
committed
AJ-774: modify datatype name for DT_IOTANY;
1 parent cab783b commit fd02581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/com/xxdb/data/BasicEntityFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ else if (form == Entity.DATA_FORM.DF_TENSOR)
8181
return new BasicTensor(type, in);
8282
else if(type == Entity.DATA_TYPE.DT_ANY && (form == Entity.DATA_FORM.DF_VECTOR || form == Entity.DATA_FORM.DF_PAIR))
8383
return new BasicAnyVector(in);
84-
else if (type == Entity.DATA_TYPE.DT_ANYIOT)
84+
else if (type == DT_IOTANY)
8585
return new BasicIotAnyVector(in);
8686
else if(type.getValue() >= Entity.DATA_TYPE.DT_BOOL_ARRAY.getValue() && type.getValue() <= DT_DECIMAL128_ARRAY.getValue())
8787
return new BasicArrayVector(type, in);

0 commit comments

Comments
 (0)