()
| 574 | |
| 575 | #[test] |
| 576 | fn reserved_graph() { |
| 577 | assert_reserved("CREATE TABLE graph (id INT)"); |
| 578 | let stmt = ok(r#"CREATE TABLE "graph" (id INT)"#); |
| 579 | assert!(matches!( |
| 580 | stmt, |
| 581 | NodedbStatement::Collection(CollectionStmt::CreateTable { .. }) |
| 582 | )); |
| 583 | } |
| 584 | |
| 585 | #[test] |
| 586 | fn reserved_match() { |
nothing calls this directly
no test coverage detected