Executes a SHOW... query, fetching all rows
(self, args)
| 1668 | return CmdStatus.ERROR |
| 1669 | |
| 1670 | def do_show(self, args): |
| 1671 | """Executes a SHOW... query, fetching all rows""" |
| 1672 | return self._execute_stmt( |
| 1673 | self._build_query_string(self.last_leading_comment, self.orig_cmd, args)) |
| 1674 | |
| 1675 | def do_describe(self, args): |
| 1676 | return self.__do_describe(self.orig_cmd, args) |
nothing calls this directly
no test coverage detected