Add support for DROP MATERIALIZED VIEW (#1743)

This commit is contained in:
Ifeanyi Ubah 2025-03-13 20:51:29 +01:00 committed by GitHub
parent fb578bb419
commit cf4ab7f9ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 8 additions and 1 deletions

View file

@ -8189,6 +8189,9 @@ fn parse_drop_view() {
}
_ => unreachable!(),
}
verified_stmt("DROP MATERIALIZED VIEW a.b.c");
verified_stmt("DROP MATERIALIZED VIEW IF EXISTS a.b.c");
}
#[test]