mirror of https://github.com/apache/druid.git
Fix typo in avatica java client code documenation (#5553)
This commit is contained in:
parent
30fc4d3ba0
commit
0c4598c1fe
|
@ -382,7 +382,7 @@ Properties connectionProperties = new Properties();
|
|||
|
||||
try (Connection connection = DriverManager.getConnection(url, connectionProperties)) {
|
||||
try (
|
||||
final Statement statement = client.createStatement();
|
||||
final Statement statement = connection.createStatement();
|
||||
final ResultSet resultSet = statement.executeQuery(query)
|
||||
) {
|
||||
while (resultSet.next()) {
|
||||
|
|
Loading…
Reference in New Issue