File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,8 @@ fn parse_describe_query(
177
177
{
178
178
return Err (
179
179
Diagnostic :: error ( & format ! ( "Unresolved table name `{}`" , table_name) )
180
- . add_help ( "You can use the command `SHOW TABLES` to get list of current tables" )
180
+ . add_help ( "You can use the `SHOW TABLES` query to get list of current tables" )
181
+ . add_help ( "Check the documentations to see available tables" )
181
182
. with_location ( calculate_safe_location ( tokens, * position) )
182
183
. as_boxed ( ) ,
183
184
) ;
@@ -808,6 +809,7 @@ fn parse_from_option(
808
809
. contains_key ( table_name. as_str ( ) )
809
810
{
810
811
return Err ( Diagnostic :: error ( "Unresolved table name" )
812
+ . add_help ( "You can use the `SHOW TABLES` query to get list of current tables" )
811
813
. add_help ( "Check the documentations to see available tables" )
812
814
. with_location ( tokens[ * position - 1 ] . location )
813
815
. as_boxed ( ) ) ;
You can’t perform that action at this time.
0 commit comments