haohuaijin opened a new issue, #14141: URL: https://github.com/apache/datafusion/issues/14141
### Describe the bug ``` DataFusion CLI v44.0.0 > create table t(a int, b int, user text) as values (1,2,'test'), (2,3,null); 0 row(s) fetched. Elapsed 0.051 seconds. > select * from t; +---+---+------+ | a | b | user | +---+---+------+ | 1 | 2 | test | | 2 | 3 | | +---+---+------+ 2 row(s) fetched. Elapsed 0.006 seconds. > select * from t where user = 'test'; Error during planning: Invalid function 'user'. Did you mean 'upper'? ``` ### To Reproduce like above ### Expected behavior this query can run success ### Additional context test in datafusion v44.0.0 and current main, both reported error -- 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