MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / drop_basic

Function drop_basic

nodedb-sql/src/ddl_ast/parse/synonym_group.rs:216–225  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

214
215 #[test]
216 fn drop_basic() {
217 let stmt = ok("DROP SYNONYM GROUP db_terms");
218 assert_eq!(
219 stmt,
220 NodedbStatement::Policy(PolicyStmt::DropSynonymGroup {
221 name: "db_terms".to_string(),
222 if_exists: false,
223 })
224 );
225 }
226
227 #[test]
228 fn drop_if_exists() {

Callers

nothing calls this directly

Calls 1

okFunction · 0.70

Tested by

no test coverage detected