MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / as_str

Method as_str

graphlite/src/plan/pattern_optimization/pattern_analysis.rs:311–317  ·  view source on GitHub ↗

ROADMAP v0.4.0 - Join type display for query plan explanation

(&self)

Source from the content-addressed store, hash-verified

309 /// Get the string representation of this join type
310 #[allow(dead_code)] // ROADMAP v0.4.0 - Join type display for query plan explanation
311 pub fn as_str(&self) -> &'static str {
312 match self {
313 JoinType::Hash => "Hash",
314 JoinType::NestedLoop => "NestedLoop",
315 JoinType::IndexLookup => "IndexLookup",
316 }
317 }
318
319 /// Check if this join type is suitable for large datasets
320 #[allow(dead_code)] // ROADMAP v0.4.0 - Scalability assessment for large graph queries

Callers 1

apply_aggregationMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected