()
| 584 | |
| 585 | #[test] |
| 586 | fn reserved_match() { |
| 587 | assert_reserved("CREATE TABLE match (id INT)"); |
| 588 | let stmt = ok(r#"CREATE TABLE "match" (id INT)"#); |
| 589 | assert!(matches!( |
| 590 | stmt, |
| 591 | NodedbStatement::Collection(CollectionStmt::CreateTable { .. }) |
| 592 | )); |
| 593 | } |
| 594 | |
| 595 | #[test] |
| 596 | fn reserved_optional() { |
nothing calls this directly
no test coverage detected