Skip to content

Commit

Permalink
metadata is null
Browse files Browse the repository at this point in the history
  • Loading branch information
wonwoo authored and rusher committed Jan 5, 2023
1 parent a17692a commit ce68aed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/mariadb/r2dbc/client/MariadbResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public <T> Flux<T> map(BiFunction<Row, RowMetadata, ? extends T> f) {

ByteBuf buf = getLongTextEncoded(okPacket.getLastInsertId());
org.mariadb.r2dbc.api.MariadbRow row = new MariadbRowText(buf, tmpMeta, factory);
sink.next(f.apply(row, meta.get()));
sink.next(f.apply(row, row.getMetadata()));
ReferenceCountUtil.release(row);
}
return;
Expand Down

0 comments on commit ce68aed

Please sign in to comment.