(t *testing.T)
| 272 | } |
| 273 | |
| 274 | func TestRenderUpdate_Nil(t *testing.T) { |
| 275 | var stmt *ast.UpdateStatement |
| 276 | if fmtStmt(stmt, ast.CompactStyle()) != "" { |
| 277 | t.Error("nil should return empty string") |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | // ─── DELETE ────────────────────────────────────────────────────────────────── |
| 282 |
nothing calls this directly
no test coverage detected