paleolimbot commented on code in PR #20676:
URL: https://github.com/apache/datafusion/pull/20676#discussion_r2879351669


##########
datafusion/sql/tests/sql_integration.rs:
##########
@@ -4727,6 +4727,14 @@ fn test_custom_type_plan() -> Result<()> {
     "#
     );
 
+    let plan = plan_sql("SELECT UUID '00010203-0405-0607-0809-000102030506'");
+    assert_snapshot!(
+        plan,
+        @r#"
+    Projection: CAST(Utf8("00010203-0405-0607-0809-000102030506") AS 
FixedSizeBinary(16))
+      EmptyRelation: rows=1
+    "#
+    );

Review Comment:
   When https://github.com/apache/datafusion/pull/18136 merges we can update 
this to reflect the printing of logical casts where the target contains 
metadata like the metadata we've added here.



-- 
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]

Reply via email to