Ivan
Ivan
I see problem here: ``` elif spec.startswith('Tuple'): inner = spec[6:-1] coltype = self.ischema_names['_tuple'] inner_types = [ self._get_column_type(name, t.strip()) for t in inner.split(',') ] return coltype(*inner_types) elif spec.startswith('Map'): inner = spec[4:-1]...
I wrote a function to split it and we use it in production. ``` @staticmethod def _split_inner(inner: str): start = 0 result_split = [] num_in_brackets = 0 for idx, char...
Is this package abandoned?