graup commented on code in PR #1679:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1679#discussion_r1928959147


##########
tests/sqlparser_bigquery.rs:
##########
@@ -2214,6 +2214,30 @@ fn test_select_as_value() {
     assert_eq!(Some(ValueTableMode::AsValue), select.value_table_mode);
 }
 
+#[test]
+fn test_typed_strings() {
+    let expr = bigquery().verified_expr(r#"JSON """{"foo":"bar's"}""""#);
+    assert_eq!(
+        Expr::TypedString {
+            data_type: DataType::JSON,
+            value: Value::TripleDoubleQuotedString(r#"{"foo":"bar's"}"#.into())
+        },
+        expr
+    );
+
+    let expr = bigquery().verified_expr(r#"JSON '''{"foo":"bar's"}'''"#);
+    if let Expr::TypedString { data_type, value } = expr {
+        assert_eq!(DataType::JSON, data_type);
+        let string_value: String = value.into();
+        assert_eq!(r#"{"foo":"bar's"}"#, string_value);
+    }
+
+    // SingleQuotedString and DoubleQuotedString are currently not correctly 
formatted by `fmt::Display for Value`.
+    // BigQuery does not support double escaping, should be \' or \" instead.
+    //bigquery().verified_expr(r#"JSON '{"foo":"bar\'s"}'"#);
+    //bigquery().verified_expr(r#"JSON "{\"foo\":\"bar's\"}""#);

Review Comment:
   No, like I mentioned in the description, this would be better for another 
PR. I can remove those lines if you think that's better but I thought it's good 
to document this unintended behavior. (The test should be there, it's just 
failing at the moment.)



-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to