(t *testing.T)
| 159 | } |
| 160 | |
| 161 | func TestParseSQLInternal_InvalidSQL(t *testing.T) { |
| 162 | _, err := parseSQLInternal(")))((( @@@ !!!") |
| 163 | if err == nil { |
| 164 | t.Fatal("expected parse error for invalid SQL") |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | // --- extractMetadataInternal --- |
| 169 |
nothing calls this directly
no test coverage detected