()
| 654 | |
| 655 | #[test] |
| 656 | fn reserved_crdt() { |
| 657 | assert_reserved("CREATE TABLE crdt (id INT)"); |
| 658 | let stmt = ok(r#"CREATE TABLE "crdt" (id INT)"#); |
| 659 | assert!(matches!( |
| 660 | stmt, |
| 661 | NodedbStatement::Collection(CollectionStmt::CreateTable { .. }) |
| 662 | )); |
| 663 | } |
| 664 | } |
nothing calls this directly
no test coverage detected