From 18ec9087f4501aa7b0f3f4ede6a6b0fd353fd390 Mon Sep 17 00:00:00 2001 From: Nicola Coretti Date: Tue, 21 Nov 2023 11:48:15 +0100 Subject: [PATCH] Added additional information regarding the impact on DB side --- pyexasol/connection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyexasol/connection.py b/pyexasol/connection.py index 80be0f2..4e5d7a7 100644 --- a/pyexasol/connection.py +++ b/pyexasol/connection.py @@ -894,6 +894,7 @@ def __del__(self): # # 1. `__del__` is invoked during a regular garbage collector run while the process remains active. # 2. `__del__` is invoked during interpreter shutdown (throws an exception). + # * This leads to a minor residual on the database, which will automatically be cleared up within a couple of hours # # In situations where interpreter shutdown occurs while a connection remains unclosed # due to not being addressed during a regular garbage collector run or manual close,