Wrapper wraps a given Querier with different format. Used to prefix/suffix other queries.
| 2851 | // Wrapper wraps a given Querier with different format. |
| 2852 | // Used to prefix/suffix other queries. |
| 2853 | type Wrapper struct { |
| 2854 | format string |
| 2855 | wrapped Querier |
| 2856 | } |
| 2857 | |
| 2858 | // Query returns query representation of a wrapped Querier. |
| 2859 | func (w *Wrapper) Query() (string, []any) { |
nothing calls this directly
no outgoing calls
no test coverage detected