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

Function parse_undrop_table_alias

nodedb-sql/src/ddl_ast/parse/dispatch.rs:252–260  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

250
251 #[test]
252 fn parse_undrop_table_alias() {
253 let stmt = ok("UNDROP TABLE users");
254 assert_eq!(
255 stmt,
256 NodedbStatement::Collection(CollectionStmt::UndropCollection {
257 name: "users".into()
258 })
259 );
260 }
261
262 #[test]
263 fn parse_show_nodes() {

Callers

nothing calls this directly

Calls 1

okFunction · 0.70

Tested by

no test coverage detected