fn parse_list_value(s: &str) -> Vec<String>
Parse a CQL list string like ['a', 'b', 'c'] or [a, b, c] into a Vec of strings.
['a', 'b', 'c']
[a, b, c]