Skip to content

Commit

Permalink
Fix close ignored in InMemoryTrinoResultSet
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed Jan 18, 2022
1 parent 85ed423 commit 1ca5416
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,7 @@ public InMemoryTrinoResultSet(List<Column> columns, List<List<Object>> results)
@Override
public void close()
throws SQLException
{}
{
closed.set(true);
}
}

0 comments on commit 1ca5416

Please sign in to comment.