adriangb commented on code in PR #14521: URL: https://github.com/apache/datafusion/pull/14521#discussion_r1945533851
########## datafusion/sqllogictest/test_files/errors.slt: ########## @@ -161,3 +161,13 @@ create table records (timestamp timestamp, value float) as values ( '2021-01-01 00:00:00', 1.0, '2021-01-01 00:00:00', 2.0 ); + + +statement ok +create table a(timestamp int, birthday int); + +query error DataFusion error: Schema error: No field named timetamp\. Did you mean 'a\.timestamp'\?\. +select timetamp from a; + +query error DataFusion error: Schema error: No field named dadsada\. Valid fields are a\.timestamp, a\.birthday\. Review Comment: right so in this case there were no matches over 0.5 and thus all of the fields were shown -- 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