We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e951515 commit 714c586Copy full SHA for 714c586
src/test/java/com/influxdb/v3/client/InfluxDBClientTest.java
@@ -229,7 +229,8 @@ public void testQueryRows() throws Exception {
229
}
230
231
Map<String, Object> parameters = Map.of("testId", uuid);
232
- String sql = String.format("Select * from %s where \"testId\"=$testId order by time", measurement); // Result set much be ordered by time
+ // Result set much be ordered by time
233
+ String sql = String.format("Select * from %s where \"testId\"=$testId order by time", measurement);
234
try (Stream<Map<String, Object>> stream = client.queryRows(sql, parameters)) {
235
List<Map<String, Object>> results = stream.collect(Collectors.toList());
236
for (int i = 0; i <= 9; i++) {
0 commit comments