Smoke test for the TIP command
(self, vector)
| 785 | child_proc.wait() |
| 786 | |
| 787 | def test_tip(self, vector): |
| 788 | """Smoke test for the TIP command""" |
| 789 | result = run_impala_shell_interactive(vector, "tip;") |
| 790 | for t in TIPS: |
| 791 | if t in result.stderr: return |
| 792 | assert False, "No tip found in output %s" % result.stderr |
| 793 | |
| 794 | def test_var_substitution(self, vector): |
| 795 | with open(os.path.join(QUERY_FILE_PATH, 'test_var_substitution.sql')) as f: |
nothing calls this directly
no test coverage detected