In the Firebird, the MAX_INLINE_BLOB_SIZE is MAX_USHORT witch is equals to 65535 (see https://github.com/FirebirdSQL/firebird/blob/master/src/remote/remote.h#L107C43-L107C58).
But Jaybird sets the value to 65536:
|
public static final int DEFAULT_MAX_INLINE_BLOB_SIZE = 64 * 1024; |
Firebird handles these cases, but the Debug build has an annoying assert violation. It would be nice to fix it.
I'll create a pull request for this.
In the Firebird, the MAX_INLINE_BLOB_SIZE is MAX_USHORT witch is equals to 65535 (see https://github.com/FirebirdSQL/firebird/blob/master/src/remote/remote.h#L107C43-L107C58).
But Jaybird sets the value to 65536:
jaybird/src/main/org/firebirdsql/jaybird/props/PropertyConstants.java
Line 61 in c097281
Firebird handles these cases, but the Debug build has an annoying assert violation. It would be nice to fix it.
I'll create a pull request for this.