()
| 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() { |