()
| 5336 | |
| 5337 | #[test] |
| 5338 | fn test_call_with_match_rejected() { |
| 5339 | // Bug #3: CALL+MATCH should also be rejected |
| 5340 | let query = r#"CALL system.list_functions() |
| 5341 | YIELD name |
| 5342 | MATCH (n);"#; |
| 5343 | |
| 5344 | let result = parse_query(query); |
| 5345 | assert!( |
| 5346 | result.is_err(), |
| 5347 | "Parser should reject CALL with MATCH clause" |
| 5348 | ); |
| 5349 | } |
| 5350 | |
| 5351 | #[test] |
| 5352 | fn test_call_complex_where_expression() { |
nothing calls this directly
no test coverage detected