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
Hi,
there seems to be an encoding issue in util().serialize(...). Take these lines, assuming that newTaxEnt has the string "açb" in field author
System.out.println(newTaxEnt.getAuthor()); // outputs açb
VPackSlice value = dbDriver.util().serialize(newTaxEnt, false);
System.out.println(value.get("author").getAsString()); // outputs aç
The actual value stored in the database is also truncated.
Is it a problem in the serializer, or am I assumed to encode the string in other way before passing it?
Best,
Miguel
The text was updated successfully, but these errors were encountered:
Hi,
there seems to be an encoding issue in util().serialize(...). Take these lines, assuming that
newTaxEnt
has the string "açb" in fieldauthor
The actual value stored in the database is also truncated.
Is it a problem in the serializer, or am I assumed to encode the string in other way before passing it?
Best,
Miguel
The text was updated successfully, but these errors were encountered: