Skip to content

Commit

Permalink
dyj fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ha2556 committed Apr 3, 2024
1 parent 9cfa4c7 commit 562d1d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private static void dotTrace(String prop, String propKey, String propJson) {
connection = DriverManager.getConnection(url, user, password);
statement = connection.createStatement();

String sql = "SELECT data_binary FROM segment ORDER BY latency DESC OFFSET 10 LIMIT 1";
String sql = "SELECT data_binary FROM segment ORDER BY latency DESC LIMIT 1 OFFSET 10";
resultSet = statement.executeQuery(sql);

String dataBinary = null;
Expand Down

0 comments on commit 562d1d8

Please sign in to comment.