(t *testing.T)
| 155 | } |
| 156 | |
| 157 | func TestRenderSelect_Nil(t *testing.T) { |
| 158 | var stmt *ast.SelectStatement |
| 159 | if fmtStmt(stmt, ast.CompactStyle()) != "" { |
| 160 | t.Error("nil should return empty string") |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | // ─── INSERT ────────────────────────────────────────────────────────────────── |
| 165 |
nothing calls this directly
no test coverage detected