enabled List and Set previously deactivated

This commit is contained in:
Luca Frosini 2024-06-13 15:31:12 +02:00
parent 8e4f173917
commit 8f701c10a5
1 changed files with 6 additions and 6 deletions

View File

@ -362,12 +362,12 @@ public class TypeManagement {
*/
if(!typeList.contains(type.getName())) {
switch(propertyTypeName.getBaseType()) {
case LIST:
throw new UnsupportedDataTypeException(OType.EMBEDDEDLIST
+ " support is currently disabled due to OrientDB bug see https://github.com/orientechnologies/orientdb/issues/7354");
case SET:
throw new UnsupportedDataTypeException(OType.EMBEDDEDSET
+ " support is currently disabled due to OrientDB bug see https://github.com/orientechnologies/orientdb/issues/7354");
// case LIST:
// throw new UnsupportedDataTypeException(OType.EMBEDDEDLIST
// + " support is currently disabled due to OrientDB bug see https://github.com/orientechnologies/orientdb/issues/7354");
// case SET:
// throw new UnsupportedDataTypeException(OType.EMBEDDEDSET
// + " support is currently disabled due to OrientDB bug see https://github.com/orientechnologies/orientdb/issues/7354");
default:
break;
}