You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the problem seems to be in the JSON serialization, the record is correctly updated but when you retrieve it from HTTP (eg. from Studio) you get a wrong collection value.
If you use it from a binary driver (eg. Java) it should work fine
OrientDB Version, operating system, or hardware.
Operating System
If an array is inserted in schemaless mode, its contents are erased if a single "RID" is added
Expected behavior and actual behavior
Steps to reproduce the problem
insert into property set property = [ 'a', 'b', 3 ]
--> #26:0
update #26:0 add property = 'k'
-->["a","b",3,"k"]
update #26:0 add property = #25:0
-->[ #25:0 ]
expected
-->["a","b",3,"k",#25:0]
further an additional
update #26:0 add property = 'k'
does not modify the array
The text was updated successfully, but these errors were encountered: