Skip to content

Commit

Permalink
Merge pull request #10298 from sundy-li/add-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
sundy-li authored Mar 2, 2023
2 parents c2f918c + 6f91284 commit 0c88c00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/doc/10-deploy/01-installing-databend.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description:

Databend offers you these options for downloading the installation packages:

- [Manual download](#manual-download): You can download the installation package for your platfom directly from the Databend website.
- [Manual download](#manual-download): You can download the installation package for your platform directly from the Databend website.
- [APT Package Manager](#apt-package-manager): You can use the APT package manager to download and install Databend on Ubuntu or Debian.
- [Docker](#docker): You can use Docker to download and run Databend in a containerized environment.

Expand Down
10 changes: 5 additions & 5 deletions src/query/sql/src/planner/binder/bind_context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,12 @@ impl BindContext {
}

if result.is_empty() {
Err(ErrorCode::SemanticError("column doesn't exist".to_string()).set_span(span))
Err(ErrorCode::SemanticError(format!("column {column} doesn't exist")).set_span(span))
} else if result.len() > 1 {
Err(
ErrorCode::SemanticError("column reference is ambiguous".to_string())
.set_span(span),
)
Err(ErrorCode::SemanticError(format!(
"column {column} reference is ambiguous, got {result:?}"
))
.set_span(span))
} else {
Ok(result.remove(0))
}
Expand Down

1 comment on commit 0c88c00

@vercel
Copy link

@vercel vercel bot commented on 0c88c00 Mar 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

databend – ./

databend-git-main-databend.vercel.app
databend-databend.vercel.app
databend.rs
databend.vercel.app

Please sign in to comment.