alamb commented on code in PR #12014:
URL: https://github.com/apache/datafusion/pull/12014#discussion_r1718331416
##########
datafusion/sql/src/utils.rs:
##########
@@ -268,6 +268,7 @@ pub(crate) fn value_to_string(value: &Value) ->
Option<String> {
Value::SingleQuotedString(s) => Some(s.to_string()),
Value::DollarQuotedString(s) => Some(s.to_string()),
Value::Number(_, _) | Value::Boolean(_) => Some(value.to_string()),
+ Value::UnicodeStringLiteral(s) => Some(s.to_string()),
Review Comment:
I suspect this was not carefully designed and likely is not an intentional
oversight
--
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]