(self, db)
| 774 | return command.lower() in ImpalaShell.QUIT_COMMANDS |
| 775 | |
| 776 | def set_prompt(self, db): |
| 777 | self.prompt = ImpalaShell.PROMPT_FORMAT.format( |
| 778 | host=self.impalad[0], port=self.impalad[1], db=db) |
| 779 | |
| 780 | def precmd(self, args): |
| 781 | # In Python2, 'args' could in str type if it's the original input line, or in unicode |
no test coverage detected