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 008d030 commit 34495a2Copy full SHA for 34495a2
src/test/java/com/influxdb/v3/client/InfluxDBClientTest.java
@@ -244,7 +244,8 @@ public void testQueryRows() throws Exception {
244
}
245
246
Map<String, Object> parameters = Map.of("testId", uuid);
247
- 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
248
+ String sql = String.format("Select * from %s where \"testId\"=$testId order by time", measurement);
249
try (Stream<Map<String, Object>> stream = client.queryRows(sql, parameters)) {
250
List<Map<String, Object>> results = stream.collect(Collectors.toList());
251
for (int i = 0; i <= 9; i++) {
0 commit comments