forked from databendlabs/databend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve error hints when select * from xx.yy (databendlabs#14663)
* fix: improve error hints when select * from xx.yy * fix: improve error hints when select * from xx.yy * feat: add test * feat: add test * Update tests/sqllogictests/suites/base/issues/issue_13718.test Co-authored-by: Bohu <[email protected]> * fix issue_13718.test --------- Co-authored-by: Bohu <[email protected]>
- Loading branch information
1 parent
c3b148d
commit 3a50f2c
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
statement ok | ||
DROP DATABASE IF EXISTS xx | ||
|
||
statement error (?s)1003.*Unknown database `xx` in catalog 'default' | ||
select * from xx.yy; |