ROADMAP v0.4.0 - Join type display for query plan explanation
(&self)
| 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 |