Executes a VALUES(...) query, fetching all rows
(self, args)
| 1633 | return table |
| 1634 | |
| 1635 | def do_values(self, args): |
| 1636 | """Executes a VALUES(...) query, fetching all rows""" |
| 1637 | return self._execute_stmt( |
| 1638 | self._build_query_string(self.last_leading_comment, self.orig_cmd, args)) |
| 1639 | |
| 1640 | def do_with(self, args): |
| 1641 | """Executes a query with a WITH clause, fetching all rows""" |
nothing calls this directly
no test coverage detected