Skip to content

Commit

Permalink
update msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed Apr 17, 2024
1 parent 0ace403 commit 3fa553a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
rust_version:
- stable
- "1.75.0" # MSRV
- "1.74.0" # MSRV
os:
- ubuntu-latest
- windows-latest
Expand Down
2 changes: 1 addition & 1 deletion smoltable/src/column_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub struct ColumnKey {
impl ColumnKey {
pub fn build_key(&self, row_key: &str) -> String {
match &self.qualifier {
Some(cq) => format!("{row_key}:{}:{}:", self.family, cq),
Some(cq) => format!("{row_key}:{}:{cq}:", self.family),
None => format!("{row_key}:{}:", self.family),
}
}
Expand Down

0 comments on commit 3fa553a

Please sign in to comment.