(self, f, protocol_version)
| 667 | super(ExecuteMessage, self)._write_query_params(f, protocol_version) |
| 668 | |
| 669 | def send_body(self, f, protocol_version): |
| 670 | write_string(f, self.query_id) |
| 671 | if ProtocolVersion.uses_prepared_metadata(protocol_version): |
| 672 | write_string(f, self.result_metadata_id) |
| 673 | self._write_query_params(f, protocol_version) |
| 674 | |
| 675 | |
| 676 | CUSTOM_TYPE = object() |