We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe95068 commit ae53b03Copy full SHA for ae53b03
src/test/java/com/influxdb/v3/client/internal/FlightSqlClientTest.java
@@ -438,7 +438,7 @@ void queryPointWithNullField() throws Exception {
438
Assertions.assertThatNoException().isThrownBy(() -> {
439
Stream<PointValues> stream = influxDBClient.queryPoints(
440
"Select normalField, nullField, nullField1 from \"nothing\"");
441
- stream.forEach(pointValues ->{
+ stream.forEach(pointValues -> {
442
Assertions.assertThat(pointValues.getField("normalField")).isEqualTo("Value");
443
Assertions.assertThat(pointValues.getField("nullField")).isNull();
444
Assertions.assertThat(pointValues.getField("nullField1")).isNull();
0 commit comments