Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jr1221 committed Nov 21, 2024
1 parent f1e9dc7 commit 39c6b5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/scylla-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy --all-targets --all-features
run: cargo clippy --all-targets
- name: Fmt
run: cargo fmt --check
- name: Start DB
Expand Down
6 changes: 1 addition & 5 deletions scylla-server/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,4 @@ diesel::table! {
diesel::joinable!(data -> dataType (dataTypeName));
diesel::joinable!(data -> run (runId));

diesel::allow_tables_to_appear_in_same_query!(
data,
dataType,
run,
);
diesel::allow_tables_to_appear_in_same_query!(data, dataType, run,);

0 comments on commit 39c6b5e

Please sign in to comment.