()
| 602 | |
| 603 | #[test] |
| 604 | fn cjk_string_in_concat() { |
| 605 | let (expr, _) = parse_ok("CONCAT('你好', name)"); |
| 606 | let doc = Value::from(serde_json::json!({"name": "world"})); |
| 607 | assert_eq!(expr.eval(&doc), Value::String("你好world".into())); |
| 608 | } |
| 609 | |
| 610 | #[test] |
| 611 | fn comparison_with_utf8_literal() { |
nothing calls this directly
no test coverage detected