databend
databend copied to clipboard
bug: error hints when select * from xx.yy
Summary
SQL: select * from xx.yy;
1025: error:
--> SQL:3:15
|
1 |
2 |
3 | select * from xx.yy;
| ^^^^^ Unknown table `xx`.`yy` in catalog 'default'
Expected:
SQL: select * from xx.yy;
1025: error:
--> SQL:3:15
|
1 |
2 |
3 | select * from xx.yy;
| ^^ Unknown database `xx` in catalog 'default'
I'd like to work on this issue.
@flyingpot How is it going? I try to fix this in PR: https://github.com/datafuselabs/databend/pull/14663