Executes a SELECT... query, fetching all rows
(self, args)
| 1335 | return self.print_runtime_profile(profile, failed_profile, profile_display_mode) |
| 1336 | |
| 1337 | def do_select(self, args): |
| 1338 | """Executes a SELECT... query, fetching all rows""" |
| 1339 | query_str = self._build_query_string(self.last_leading_comment, self.orig_cmd, args) |
| 1340 | return self._execute_stmt(query_str, print_web_link=True) |
| 1341 | |
| 1342 | def do_compute(self, args): |
| 1343 | """Executes a COMPUTE STATS query. |
nothing calls this directly
no test coverage detected