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

Method do_create

shell/impala_shell/impala_shell.py:1302–1306  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

1300 self._build_query_string(self.last_leading_comment, self.orig_cmd, args))
1301
1302 def do_create(self, args):
1303 # We want to print the webserver link only for CTAS queries.
1304 print_web_link = "select" in args
1305 query = self._build_query_string(self.last_leading_comment, self.orig_cmd, args)
1306 return self._execute_stmt(query, print_web_link=print_web_link)
1307
1308 def do_drop(self, args):
1309 return self._execute_stmt(

Callers

nothing calls this directly

Calls 2

_build_query_stringMethod · 0.95
_execute_stmtMethod · 0.95

Tested by

no test coverage detected