I am using 2.0.12/OS X Mavericks/JVM 1.7/Graph API/Blueprints 2.6
I am storing a map in a vertex property
m = new Hashtable<Integer, Integer>();
lastValue.setProperty("map", m);
The first time I retrieve the map everything works as expected. I can
retrieve the integers.
ii = m.keySet().iterator();
do{
i3++;
i2 = ii.next();
....
After shutting down the db engine this line:
i2 = ii.next(); causes a ClassCastException (it is an string)
I could work around this (I can use strings instead of integer, performance
penalty shouldn't be that bad)
Do you know of the issue?
Thanks a lot!
--
---
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.