()
| 644 | |
| 645 | #[test] |
| 646 | fn reserved_search() { |
| 647 | assert_reserved("CREATE TABLE search (id INT)"); |
| 648 | let stmt = ok(r#"CREATE TABLE "search" (id INT)"#); |
| 649 | assert!(matches!( |
| 650 | stmt, |
| 651 | NodedbStatement::Collection(CollectionStmt::CreateTable { .. }) |
| 652 | )); |
| 653 | } |
| 654 | |
| 655 | #[test] |
| 656 | fn reserved_crdt() { |
nothing calls this directly
no test coverage detected