Skip to content

Commit

Permalink
fix compile err due to merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyFan2002 committed Mar 20, 2023
1 parent e6997ae commit 7808d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/ast/src/ast/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ impl SelectTarget {
match self {
SelectTarget::AliasedExpr { .. } => false,
SelectTarget::QualifiedName { qualified, .. } => {
matches!(qualified.last(), Some(Indirection::Star))
matches!(qualified.last(), Some(Indirection::Star(_)))
}
}
}
Expand Down

0 comments on commit 7808d53

Please sign in to comment.