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

Method do_show

shell/impala_shell/impala_shell.py:1670–1673  ·  view source on GitHub ↗

Executes a SHOW... query, fetching all rows

(self, args)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 2

_execute_stmtMethod · 0.95
_build_query_stringMethod · 0.95

Tested by

no test coverage detected