Converts this `ShowSelect` into a [`Plan`].
(self)
| 1008 | |
| 1009 | /// Converts this `ShowSelect` into a [`Plan`]. |
| 1010 | pub fn plan(self) -> Result<Plan, PlanError> { |
| 1011 | dml::plan_select(self.scx, self.stmt, &Params::empty(), None) |
| 1012 | } |
| 1013 | |
| 1014 | /// Converts this `ShowSelect` into a [`(HirRelationExpr, Scope)`]. |
| 1015 | pub fn plan_hir(self, qcx: &QueryContext) -> Result<(HirRelationExpr, Scope), PlanError> { |
no test coverage detected