(err error, format string, args ...interface{})
| 115 | } |
| 116 | |
| 117 | func (t Test) Errorf(err error, format string, args ...interface{}) { |
| 118 | t.t.Helper() |
| 119 | if err != nil { |
| 120 | t.t.Errorf(format, args...) |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | func TestEscapedColons(t *testing.T) { |
| 125 | t.Skip("not sure it is possible to support this in general case without an SQL parser") |
no outgoing calls
no test coverage detected