(t *testing.T)
| 218 | } |
| 219 | |
| 220 | func TestRenderInsert_Nil(t *testing.T) { |
| 221 | var stmt *ast.InsertStatement |
| 222 | if fmtStmt(stmt, ast.CompactStyle()) != "" { |
| 223 | t.Error("nil should return empty string") |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | // ─── UPDATE ────────────────────────────────────────────────────────────────── |
| 228 |
nothing calls this directly
no test coverage detected