Computes the shape of this `ShowSelect`.
(self)
| 1003 | |
| 1004 | /// Computes the shape of this `ShowSelect`. |
| 1005 | pub fn describe(self) -> Result<StatementDesc, PlanError> { |
| 1006 | dml::describe_select(self.scx, self.stmt) |
| 1007 | } |
| 1008 | |
| 1009 | /// Converts this `ShowSelect` into a [`Plan`]. |
| 1010 | pub fn plan(self) -> Result<Plan, PlanError> { |
no test coverage detected