zhuqi-lucas commented on code in PR #14922: URL: https://github.com/apache/datafusion/pull/14922#discussion_r1983009303
########## datafusion/sqllogictest/test_files/window.slt: ########## @@ -755,19 +755,19 @@ LIMIT 5 7 12 #fn window_frame_ranges_string_check -query II +query error SELECT SUM(LENGTH(c13)) OVER(ORDER BY c13), SUM(LENGTH(c1)) OVER(ORDER BY c1) FROM aggregate_test_100 ORDER BY c9 LIMIT 5 ---- -2100 100 -510 79 -1440 21 -1830 61 -2010 21 +DataFusion error: type_coercion +caused by +Internal error: Cannot run range queries on datatype: Utf8View. Review Comment: It seems range query not support Utf8View. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
