tomershaniii commented on code in PR #1780:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1780#discussion_r2024616388


##########
tests/sqlparser_postgres.rs:
##########
@@ -4911,17 +4965,17 @@ fn parse_array_agg() {
     let sql = r#"SELECT GREATEST(sections_tbl.*) AS sections FROM 
sections_tbl"#;
     pg().verified_stmt(sql);
 
-    // follows special-case array_agg code path
-    let sql2 = "SELECT ARRAY_AGG(sections_tbl.*) AS sections FROM 
sections_tbl";
-    pg().verified_stmt(sql2);
+    // // follows special-case array_agg code path
+    // let sql2 = "SELECT ARRAY_AGG(sections_tbl.*) AS sections FROM 
sections_tbl";
+    // pg().verified_stmt(sql2);
 
-    // handles multi-part identifier with general code path
-    let sql3 = "SELECT GREATEST(my_schema.sections_tbl.*) AS sections FROM 
sections_tbl";
-    pg().verified_stmt(sql3);
+    // // handles multi-part identifier with general code path
+    // let sql3 = "SELECT GREATEST(my_schema.sections_tbl.*) AS sections FROM 
sections_tbl";
+    // pg().verified_stmt(sql3);
 
-    // handles multi-part identifier with array_agg code path
-    let sql4 = "SELECT ARRAY_AGG(my_schema.sections_tbl.*) AS sections FROM 
sections_tbl";
-    pg().verified_stmt(sql4);
+    // // handles multi-part identifier with array_agg code path
+    // let sql4 = "SELECT ARRAY_AGG(my_schema.sections_tbl.*) AS sections FROM 
sections_tbl";
+    // pg().verified_stmt(sql4);

Review Comment:
   yes, missed that



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