(client, sql: str)
| 68 | |
| 69 | @staticmethod |
| 70 | def run_query(client, sql: str): |
| 71 | def query(): |
| 72 | result = client.run_query(sql) |
| 73 | client.close() |
| 74 | return result |
| 75 | |
| 76 | future = JdbcClientFactory.executor.submit(query) |
| 77 | return future.result() |
| 78 | |
| 79 | @staticmethod |
| 80 | def get_databases(client): |
nothing calls this directly
no outgoing calls
no test coverage detected