TableSession represents a session for interacting with IoTDB in relational mode. It wraps a Session instance, providing methods for executing SQL statements and managing the lifecycle of the session.
| 71 | // It wraps a Session instance, providing methods for executing SQL statements |
| 72 | // and managing the lifecycle of the session. |
| 73 | type TableSession struct { |
| 74 | session Session |
| 75 | } |
| 76 | |
| 77 | // NewTableSession creates a new TableSession instance using the provided configuration. |
| 78 | // |
nothing calls this directly
no outgoing calls
no test coverage detected