DuckHandler is a handler uses DuckDB and the SQLe engine directly running Postgres specific queries.
| 80 | // DuckHandler is a handler uses DuckDB and the SQLe engine directly |
| 81 | // running Postgres specific queries. |
| 82 | type DuckHandler struct { |
| 83 | e *sqle.Engine |
| 84 | sm *server.SessionManager |
| 85 | readTimeout time.Duration |
| 86 | encodeLoggedQuery bool |
| 87 | connectionHandler *ConnectionHandler |
| 88 | } |
| 89 | |
| 90 | func (h *DuckHandler) SetConnectionHandler(handler *ConnectionHandler) { |
| 91 | h.connectionHandler = handler |
nothing calls this directly
no outgoing calls
no test coverage detected