File tree Expand file tree Collapse file tree 1 file changed +0
-25
lines changed
flight/flight-sql-jdbc-core/src/main/java/org/apache/arrow/driver/jdbc Expand file tree Collapse file tree 1 file changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -189,36 +189,11 @@ public void close() throws SQLException {
189189 }
190190 try {
191191 AutoCloseables .close (clientHandler );
192- } catch (final Exception e ) {
193- if (topLevelException == null ) {
194- topLevelException = e ;
195- } else {
196- topLevelException .addSuppressed (e );
197- }
198- }
199- try {
200192 if (executorService != null ) {
201193 executorService .shutdown ();
202194 }
203- } catch (final Exception e ) {
204- if (topLevelException == null ) {
205- topLevelException = e ;
206- } else {
207- topLevelException .addSuppressed (e );
208- }
209- }
210-
211- try {
212195 allocator .getChildAllocators ().forEach (AutoCloseables ::closeNoChecked );
213196 AutoCloseables .close (allocator );
214- } catch (final Exception e ) {
215- if (topLevelException == null ) {
216- topLevelException = e ;
217- } else {
218- topLevelException .addSuppressed (e );
219- }
220- }
221- try {
222197 super .close ();
223198 } catch (final Exception e ) {
224199 if (topLevelException == null ) {
You can’t perform that action at this time.
0 commit comments