mkmik commented on issue #1710:
URL: 
https://github.com/apache/arrow-datafusion/issues/1710#issuecomment-1030003765


   ```
   tmp1=> create table bar ("Foo" int, "FoO" int);
   CREATE TABLE
   tmp1=> insert into bar values (2,3);
   INSERT 0 1
   tmp1=> select * from bar;
    Foo | FoO
   -----+-----
      2 |   3
   (1 row)
   
   tmp1=> select foo from bar;
   ERROR:  column "foo" does not exist
   LINE 1: select foo from bar;
                  ^
   HINT:  Perhaps you meant to reference the column "bar.Foo".
   ```


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


Reply via email to