mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2025-08-02 11:10:11 +03:00
commit
586138e0dd
|
@ -81,8 +81,9 @@ def parse_tsv(line):
|
||||||
line = line.decode()
|
line = line.decode()
|
||||||
if line and line[-1] == '\n':
|
if line and line[-1] == '\n':
|
||||||
line = line[:-1]
|
line = line[:-1]
|
||||||
return [unescape(value) for value in line.split(str('\t'))]
|
# Repetitive unescape using undocumented function
|
||||||
|
# return [unescape(value) for value in line.split(str('\t'))]
|
||||||
|
return line.split(str('\t'))
|
||||||
|
|
||||||
def parse_array(array_string):
|
def parse_array(array_string):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user