JasonLi-cn opened a new issue, #12427:
URL: https://github.com/apache/datafusion/issues/12427

   ### Describe the bug
   
   ```sql
   # select_upper_case_qualified_wildcard
   query error
   SELECT PUBLIC.t1.* FROM PUBLIC.t1
   ----
   DataFusion error: expand_wildcard_rule
   caused by
   Error during planning: Invalid qualifier PUBLIC.t1
   
   
   query error
   SELECT PUBLIC.t1.* FROM public.t1
   ----
   DataFusion error: expand_wildcard_rule
   caused by
   Error during planning: Invalid qualifier PUBLIC.t1
   
   
   query ITI
   SELECT public.t1.* FROM PUBLIC.t1
   ----
   11 a 1
   22 b 2
   33 c 3
   44 d 4
   ```
   
   ### To Reproduce
   
   _No response_
   
   ### Expected behavior
   
   ```sql
   # select_upper_case_qualified_wildcard
   query ITI
   SELECT PUBLIC.t1.* FROM PUBLIC.t1
   ----
   11 a 1
   22 b 2
   33 c 3
   44 d 4
   
   query ITI
   SELECT PUBLIC.t1.* FROM public.t1
   ----
   11 a 1
   22 b 2
   33 c 3
   44 d 4
   
   query ITI
   SELECT public.t1.* FROM PUBLIC.t1
   ----
   11 a 1
   22 b 2
   33 c 3
   44 d 4
   ```
   
   ### Additional context
   
   _No response_


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