| 122 | return true, err |
| 123 | } |
| 124 | return true, nil |
| 125 | } |
| 126 | |
| 127 | type InPlaceHandler struct { |
| 128 | // ShouldBeHandledInPlace is a function that determines if the query should be |
| 129 | // handled in place and not passed to the engine. |
| 130 | ShouldBeHandledInPlace func(*ConnectionHandler, *ConvertedStatement) (bool, error) |
| 131 | Handler func(*ConnectionHandler, ConvertedStatement) (bool, error) |
| 132 | } |
nothing calls this directly
no outgoing calls
no test coverage detected