Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
PakhomovAlexander committed Nov 15, 2024
1 parent 8be5ce8 commit 1899f8f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agenda.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Today we are going to:
- [ ] rewrite logical plan to have full qualified names for tables
- [ ] implement Catalog API
- [x] implement Catalog API
- [ ] try to write THE SIMPLEST optimizer in the world
- [ ] FilterRow
- [ ] execute first plan ?*
Expand Down
1 change: 1 addition & 0 deletions src/catalog/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(dead_code)]
use std::collections::HashMap;

pub struct Catalog {
Expand Down
2 changes: 2 additions & 0 deletions src/optimizer/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(dead_code)]

use core::panic;

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion src/parser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ impl<'a> Parser<'a> {
}
}

fn postfix_operator_bp(op: &Op) -> Option<(u8, ())> {
fn postfix_operator_bp(_op: &Op) -> Option<(u8, ())> {
None
}

Expand Down

0 comments on commit 1899f8f

Please sign in to comment.