def __init__(self, parent_connection): Cursor.__init__(self, parent_connection) if hasattr(parent_connection.client, 'execute_prepared_cql_query') \ and parent_connection.remote_thrift_version >= MIN_THRIFT_FOR_PREPARED_QUERIES: self.supports_prepared_queries = True cl_in_protocol = parent_connection.remote_thrift_version >= MIN_THRIFT_FOR_CL_IN_PROTOCOL self.use_cql3_methods = cl_in_protocol and self.cql_major_version == 3
def __init__(self, parent_connection): Cursor.__init__(self, parent_connection) if hasattr(parent_connection.client, 'execute_prepared_cql_query') \ and parent_connection.remote_thrift_version >= MIN_THRIFT_FOR_PREPARED_QUERIES: self.supports_prepared_queries = True