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

Method run_plugins_post

tests/util/plugin_runner.py:98–103  ·  view source on GitHub ↗
(self, context=None, scope=None)

Source from the content-addressed store, hash-verified

96 p.run_pre_hook(context=context)
97
98 def run_plugins_post(self, context=None, scope=None):
99 if len(self.__plugins) == 0: return
100 for p in self.__plugins:
101 if not scope or p.scope == scope.lower():
102 LOG.debug('Running post-hook for %s at scope %s' % (p.__name__, scope))
103 p.run_post_hook(context=context)

Callers 3

execute_using_hive_hs2Function · 0.80
execute_using_impala_hs2Function · 0.80
run-workload.pyFile · 0.80

Calls 2

debugMethod · 0.45
run_post_hookMethod · 0.45

Tested by

no test coverage detected