MCPcopy Create free account
hub / github.com/apache/impala / do_select

Method do_select

shell/impala_shell/impala_shell.py:1337–1340  ·  view source on GitHub ↗

Executes a SELECT... query, fetching all rows

(self, args)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

_build_query_stringMethod · 0.95
_execute_stmtMethod · 0.95

Tested by

no test coverage detected