Skip to content

Commit

Permalink
fix: lifetime on select.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
KKould committed Apr 10, 2024
1 parent 1e80977 commit 1a563b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/binder/select.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ use sqlparser::ast::{
TableWithJoins,
};

impl<'a, 'b, T: Transaction> Binder<'a, 'b, T> {
impl<'a: 'b, 'b, T: Transaction> Binder<'a, 'b, T> {
pub(crate) fn bind_query(&mut self, query: &Query) -> Result<LogicalPlan, DatabaseError> {
let origin_step = self.context.step_now();

Expand Down

0 comments on commit 1a563b7

Please sign in to comment.