Skip to content

Commit

Permalink
Merge pull request #7753 from datafuselabs/sundy-li-patch-1
Browse files Browse the repository at this point in the history
refactor(query): fix index error
  • Loading branch information
mergify[bot] authored Sep 20, 2022
2 parents 063744c + 6416bcc commit e59bed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/functions/src/scalars/logics/and.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ impl Function for LogicAndFiltersFunction {
input_rows: usize,
) -> Result<ColumnRef> {
if columns.len() == 1 {
return Ok(columns[1].column().clone());
return Ok(columns[0].column().clone());
}

let mut validity = None;
Expand Down

1 comment on commit e59bed1

@vercel
Copy link

@vercel vercel bot commented on e59bed1 Sep 20, 2022

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-databend.vercel.app
databend.rs
databend-git-main-databend.vercel.app
databend.vercel.app

Please sign in to comment.