Here is the issue :
https://github.com/orientechnologies/orientdb/issues/2203
create db on one node.
start node1 and node2
create class Owns extends E
create class Person extends V
create class Car extends V
create vertex Person content {"UUID":"1","type":"Person", "first":
"Dodong", "last":"Juan"}
create vertex Car content {"UUID":"2","type":"Car", "year": "2014",
"Make":"Audi"}
orientdb {inventorydb}> select from Car
----+-----+----+----+----+----
# |@RID |UUID|type|year|Make
----+-----+----+----+----+----
0 |#13:0|2 |Car |2014|Audi
----+-----+----+----+----+----
1 item(s) found. Query executed in 0.0040 sec(s).
orientdb {inventorydb}> select from Person
----+-----+----+------+------+----
# |@RID |UUID|type |first |last
----+-----+----+------+------+----
0 |#12:0|1 |Person|Dodong|Juan
----+-----+----+------+------+----
1 item(s) found. Query executed in 0.0010 sec(s).
orientdb {inventorydb}> create edge Owns from #12:0 to #13:0
Error: com.orientechnologies.orient.core.exception.OStorageException: Error
on executing command: sql.create edge Owns from #12:0 to #13:0
Error: java.lang.IllegalArgumentException: Unsupported record type: 0
Error: java.lang.IllegalArgumentException: Record type '0' is not supported
--
---
You received this message because you are subscribed to the Google Groups
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.