| 4 | import { Connection, Database, Id, Timestamp } from "@/types"; |
| 5 | |
| 6 | interface ExecuteQueryContext { |
| 7 | connection: Connection; |
| 8 | database?: Database; |
| 9 | messageId?: Id; |
| 10 | statement: string; |
| 11 | } |
| 12 | |
| 13 | interface QueryHistory { |
| 14 | context: ExecuteQueryContext; |
nothing calls this directly
no outgoing calls
no test coverage detected