MCPcopy Index your code
hub / github.com/apache/cassandra-python-driver / send_body

Method send_body

cassandra/protocol.py:669–673  ·  view source on GitHub ↗
(self, f, protocol_version)

Source from the content-addressed store, hash-verified

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
676CUSTOM_TYPE = object()

Callers 1

test_execute_messageMethod · 0.95

Calls 3

_write_query_paramsMethod · 0.95
write_stringFunction · 0.85

Tested by 1

test_execute_messageMethod · 0.76