()
| 94 | var _ Handler = &DuckHandler{} |
| 95 | |
| 96 | func (h *DuckHandler) GetCatalogProvider() *catalog.DatabaseProvider { |
| 97 | provider, ok := h.e.Analyzer.Catalog.DbProvider.(*catalog.DatabaseProvider) |
| 98 | if !ok { |
| 99 | return nil |
| 100 | } |
| 101 | return provider |
| 102 | } |
| 103 | |
| 104 | // ComBind implements the Handler interface. |
| 105 | func (h *DuckHandler) ComBind(ctx context.Context, c *mysql.Conn, prepared PreparedStatementData, bindVars []any) ([]pgproto3.FieldDescription, error) { |
no outgoing calls
no test coverage detected