()
| 594 | |
| 595 | #[test] |
| 596 | fn reserved_optional() { |
| 597 | assert_reserved("CREATE TABLE optional (id INT)"); |
| 598 | let stmt = ok(r#"CREATE TABLE "optional" (id INT)"#); |
| 599 | assert!(matches!( |
| 600 | stmt, |
| 601 | NodedbStatement::Collection(CollectionStmt::CreateTable { .. }) |
| 602 | )); |
| 603 | } |
| 604 | |
| 605 | #[test] |
| 606 | fn reserved_upsert() { |
nothing calls this directly
no test coverage detected