We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use r2dbc-h2-0.8.0.M8
r2dbc-h2-0.8.0.M8
create table t(id integer primary key, v integer) insert into t(id, v) values (1, null);
StepVerifier.create( Mono.from(connectionFactory.create()) .flatMap(c -> Mono.from(c.createStatement("select * from t where id = 1").execute())) .flatMap(result -> Mono.from(result.map((row, rowMetadata) -> row.get("v", Integer.class)))) ).expectNext((Integer) null).verifyComplete();
Error:
expectation "expectNext(null)" failed (expected value: null; actual value: 0)
The text was updated successfully, but these errors were encountered:
r2dbc-h2-issues-77 - should not decode null integer value to 0
a2880c7
r2dbc/r2dbc-h2#77
No branches or pull requests
Use
r2dbc-h2-0.8.0.M8
Error:
The text was updated successfully, but these errors were encountered: