Skip to content

Commit dd64b8d

Browse files
committed
fix: compilation errors
1 parent c7dbe02 commit dd64b8d

File tree

3 files changed

+0
-8
lines changed

3 files changed

+0
-8
lines changed

Cargo.lock

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/@local/hashql/eval/src/error.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ use hashql_diagnostics::{Diagnostic, DiagnosticIssues, Severity, category::Diagn
55

66
#[cfg(feature = "graph")]
77
use crate::graph::error::GraphCompilerDiagnosticCategory;
8-
use crate::postgres::error::PostgresDiagnosticCategory;
98

109
pub type EvalDiagnostic<K = Severity> = Diagnostic<EvalDiagnosticCategory, SpanId, K>;
1110
pub type EvalDiagnosticIssues<K = Severity> = DiagnosticIssues<EvalDiagnosticCategory, SpanId, K>;
@@ -14,7 +13,6 @@ pub type EvalDiagnosticIssues<K = Severity> = DiagnosticIssues<EvalDiagnosticCat
1413
pub enum EvalDiagnosticCategory {
1514
#[cfg(feature = "graph")]
1615
Graph(GraphCompilerDiagnosticCategory),
17-
Postgres(PostgresDiagnosticCategory),
1816
}
1917

2018
impl DiagnosticCategory for EvalDiagnosticCategory {
@@ -30,7 +28,6 @@ impl DiagnosticCategory for EvalDiagnosticCategory {
3028
match self {
3129
#[cfg(feature = "graph")]
3230
Self::Graph(graph) => Some(graph),
33-
Self::Postgres(postgres) => Some(postgres),
3431
}
3532
}
3633
}

libs/@local/hashql/eval/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@
2020

2121
extern crate alloc;
2222

23-
pub mod context;
2423
pub mod error;
2524
#[cfg(feature = "graph")]
2625
pub mod graph;
27-
pub mod postgres;
2826

2927
#[cfg(test)]
3028
mod tests {

0 commit comments

Comments
 (0)