(t *testing.T)
| 112 | } |
| 113 | |
| 114 | func TestFormatSQLInternal_InvalidSQL(t *testing.T) { |
| 115 | _, err := formatSQLInternal(")))((( @@@ !!!", 2, false, false) |
| 116 | if err == nil { |
| 117 | t.Fatal("expected format error for completely invalid SQL") |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | // --- parseSQLInternal --- |
| 122 |
nothing calls this directly
no test coverage detected