========
- Add plain text authentication create_cluster(…, username=“test”, password=“test”)
- Add public methods for Statement:
- set_timeout
- set_consistency
- set_serial_consistency
- set_page_size
- set_page_state
- Add cass_cluster_set_local_port_range create_cluster(…, local_port_range_min=49152, local_port_range_max=65535)
- Add convert value to str before bind Decimal type
- Add support for iterate over Result and Row objects
- Add new methods for fetch values from Row object:
- dict(Row) same as Row.as_dict() returns dict where key is column name
- list(Row) same as Row.as_named_tuple() return list of tuple with column name and value
- Row.as_list() returns list of values
- Row.as_tuple() returns tuple of values
- Fix segfault when select list of udt with null values
- Fix bind map type and add more tests