You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: mapping sql Char/Text/String default to Utf8View (#16290)
* feat: mapping sql Char/Text/String default to Utf8View
* Add support utf8view for sort merge join
* fix binary utf8view union with int32
* fix slt order
* fix
* fmt
* Fix test
* fix
* fix test
* fix
* clean
* Address comments
* Fix test
* support md5 for ut8view
let plan_with_params = plan.with_param_values(param_values).unwrap();
769
769
assert_snapshot!(
770
770
plan_with_params,
771
771
@r#"
772
-
Projection: person.id, person.age, Utf8("xyz") AS $6
773
-
Filter: person.age IN ([Int32(10), Int32(20)]) AND person.salary > Float64(100) AND person.salary < Float64(200) OR person.first_name < Utf8("abc")
772
+
Projection: person.id, person.age, Utf8View("xyz") AS $6
773
+
Filter: person.age IN ([Int32(10), Int32(20)]) AND person.salary > Float64(100) AND person.salary < Float64(200) OR person.first_name < Utf8View("abc")
0 commit comments