We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cab783b commit fd02581Copy full SHA for fd02581
src/com/xxdb/data/BasicEntityFactory.java
@@ -81,7 +81,7 @@ else if (form == Entity.DATA_FORM.DF_TENSOR)
81
return new BasicTensor(type, in);
82
else if(type == Entity.DATA_TYPE.DT_ANY && (form == Entity.DATA_FORM.DF_VECTOR || form == Entity.DATA_FORM.DF_PAIR))
83
return new BasicAnyVector(in);
84
- else if (type == Entity.DATA_TYPE.DT_ANYIOT)
+ else if (type == DT_IOTANY)
85
return new BasicIotAnyVector(in);
86
else if(type.getValue() >= Entity.DATA_TYPE.DT_BOOL_ARRAY.getValue() && type.getValue() <= DT_DECIMAL128_ARRAY.getValue())
87
return new BasicArrayVector(type, in);
0 commit comments