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
Calling Row.get(…) twice using the same column either fails with IndexOutOfBoundsException or returns an invalid result.
Version: 0.8.0-alpha1
SQL:
INSERT INTO legoset (name, manual) VALUES (?, ?)
Called Statement.returnGeneratedValues() and then Row.get("ID")
java.lang.IndexOutOfBoundsException: expected: 0 <= start(2) <= start + length(1) <= buf.capacity(2)
at io.netty.buffer.ByteBufUtil.getBytes(ByteBufUtil.java:884)
at io.netty.buffer.AbstractByteBuf.getCharSequence(AbstractByteBuf.java:524)
at io.netty.buffer.AbstractByteBuf.readCharSequence(AbstractByteBuf.java:531)
at org.mariadb.r2dbc.codec.list.LongCodec.decodeText(LongCodec.java:85)
at org.mariadb.r2dbc.codec.list.LongCodec.decodeText(LongCodec.java:30)
at org.mariadb.r2dbc.codec.RowDecoder.get(RowDecoder.java:54)
at org.mariadb.r2dbc.MariadbRow.decode(MariadbRow.java:93)
at org.mariadb.r2dbc.MariadbRow.get(MariadbRow.java:49)
at org.mariadb.r2dbc.MariadbRow.get(MariadbRow.java:57)
at io.r2dbc.spi.Row.get(Row.java:78)
at org.springframework.data.r2dbc.convert.MappingR2dbcConverter.potentiallySetId(MappingR2dbcConverter.java:588)
Calling
Row.get(…)twice using the same column either fails withIndexOutOfBoundsExceptionor returns an invalid result.Version:
0.8.0-alpha1SQL:
Called
Statement.returnGeneratedValues()and thenRow.get("ID")Reproducer:
The text was updated successfully, but these errors were encountered: