Check if the command is a named query execution (\n ).
(self, text)
| 320 | return [(None, None, None, message)] |
| 321 | |
| 322 | def _is_named_query_execution(self, text): |
| 323 | """Check if the command is a named query execution (\n <name>).""" |
| 324 | text = text.strip() |
| 325 | return text.startswith("\\n ") and not text.startswith("\\ns ") and not text.startswith("\\nd ") |
| 326 | |
| 327 | def register_special_commands(self): |
| 328 | self.pgspecial.register( |
no outgoing calls
no test coverage detected