(self, cmd)
| 13 | |
| 14 | class DummyExec: |
| 15 | def run(self, cmd): |
| 16 | # Ignore ping SELECT 1 commands used for exiting CLI |
| 17 | if cmd.strip().upper() == "SELECT 1": |
| 18 | return [] |
| 19 | # Record init commands |
| 20 | dummy_cmds.append(cmd) |
| 21 | return [] |
| 22 | |
| 23 | def get_timezone(self): |
| 24 | return "UTC" |
no outgoing calls
no test coverage detected