xiguashu opened a new issue, #1478: URL: https://github.com/apache/incubator-fury/issues/1478
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-fury/issues) and found no similar issues. ### Version 0.5.0-SNAPSHOT ### Component(s) Java ### Minimal reproduce step BigInteger bigInteger = new BigInteger("11111111110101010000283895380202208220050200000000111111111"); Fury fury = Fury.builder() .withLanguage(Language.JAVA) .requireClassRegistration(false) .withCompatibleMode(CompatibleMode.SCHEMA_CONSISTENT) .withAsyncCompilation(true) .build(); fury.serialize(bigInteger); ### What did you expect to see? Be serialized to a byte[] ### What did you see instead? java.lang.IllegalArgumentException at org.apache.fury.util.Preconditions.checkArgument(Preconditions.java:46) at org.apache.fury.serializer.Serializers$BigIntegerSerializer.write(Serializers.java:365) at org.apache.fury.serializer.Serializers$BigIntegerSerializer.write(Serializers.java:357) at org.apache.fury.Fury.writeData(Fury.java:555) at org.apache.fury.Fury.writeRef(Fury.java:348) at org.apache.fury.Fury.write(Fury.java:323) at org.apache.fury.Fury.serialize(Fury.java:251) at org.apache.fury.Fury.serialize(Fury.java:199) ### Anything Else? _No response_ ### Are you willing to submit a PR? - [ ] I'm willing to submit a PR! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
