Use prepared statement result_metadata for execute row responses
Description
The driver currently does not utilize the result metadata on prepared statement responses. Instead it omits setting the skip_metadata flag for execute requests, which causes result metadata to be present on ROWS responses.
We can reduce some data on the wire by employing the skip_metadata flag and using the prepared statement result metadata which would be a nice optimization.
The driver currently does not utilize the result metadata on prepared statement responses. Instead it omits setting the
skip_metadata
flag for execute requests, which causes result metadata to be present onROWS
responses.We can reduce some data on the wire by employing the
skip_metadata
flag and using the prepared statement result metadata which would be a nice optimization.