(t *testing.T)
| 148 | } |
| 149 | |
| 150 | func TestValidSQL_SelectDistinct(t *testing.T) { |
| 151 | if err := parseSQLCheck(t, "SELECT DISTINCT * FROM t"); err != nil { |
| 152 | t.Fatalf("valid SQL failed: %v", err) |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | func TestValidSQL_SelectWithWhere(t *testing.T) { |
| 157 | if err := parseSQLCheck(t, "SELECT * FROM t WHERE 1=1"); err != nil { |
nothing calls this directly
no test coverage detected