(self)
| 218 | return c |
| 219 | |
| 220 | def make_options_body(self): |
| 221 | options_buf = BytesIO() |
| 222 | write_stringmultimap(options_buf, { |
| 223 | 'CQL_VERSION': ['3.0.1'], |
| 224 | 'COMPRESSION': [] |
| 225 | }) |
| 226 | return options_buf.getvalue() |
| 227 | |
| 228 | def make_error_body(self, code, msg): |
| 229 | buf = BytesIO() |