mihailotim-db commented on code in PR #52471:
URL: https://github.com/apache/spark/pull/52471#discussion_r2576535276


##########
sql/core/src/test/resources/sql-tests/inputs/column-last-resort-resolution-precedence.sql:
##########
@@ -0,0 +1,23 @@
+DECLARE a = "aa";
+
+SELECT 'a', a;
+SELECT 'a' AS a, a;
+
+SELECT 'a', a FROM VALUES(1) AS t(a);
+SELECT 'a' AS a, a FROM VALUES(1) AS t(a);
+
+SELECT col1 FROM VALUES(1) WHERE EXISTS (SELECT 'col1', col1);

Review Comment:
   Fixed



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