We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d201d9e commit f57428dCopy full SHA for f57428d
2 files changed
.github/workflows/coverage.yml
@@ -28,6 +28,9 @@ jobs:
28
run: |
29
# Install lcov if not already installed
30
sudo apt-get install -y lcov
31
+ cargo install cargo-llvm-cov -y
32
+ rustup update
33
+ rustup component add llvm-tools-preview
34
35
- name: Create coverage info
36
crates/api-snowflake-rest/src/sql_state.rs
@@ -23,6 +23,7 @@ pub enum SqlState {
23
FeatureNotSupported,
24
}
25
26
+
27
impl Display for SqlState {
#[allow(clippy::as_conversions)]
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
@@ -38,4 +39,4 @@ impl Display for SqlState {
38
39
};
40
write!(f, "{sql_state:05}")
41
-}
42
+}
0 commit comments