PooledTableSession represents a session managed within a TableSessionPool. It ensures proper cleanup and reusability of the session.
| 71 | // PooledTableSession represents a session managed within a TableSessionPool. |
| 72 | // It ensures proper cleanup and reusability of the session. |
| 73 | type PooledTableSession struct { |
| 74 | session Session |
| 75 | sessionPool *SessionPool |
| 76 | closed int32 |
| 77 | } |
| 78 | |
| 79 | // isConnectionError returns true if the error is a connection-level error |
| 80 | // (i.e., not a server-side execution error indicated by TSStatus). |
nothing calls this directly
no outgoing calls
no test coverage detected