(t *testing.T)
| 64 | } |
| 65 | |
| 66 | func TestClickHouseDialectRegistered(t *testing.T) { |
| 67 | if !keywords.IsValidDialect("clickhouse") { |
| 68 | t.Error("clickhouse dialect not registered") |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | func TestClickHousePrewhereOnly(t *testing.T) { |
| 73 | // PREWHERE without WHERE — also valid in ClickHouse |
nothing calls this directly
no test coverage detected