Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2019-10-22 21:58:09 +02:00
parent 622ae44ea6
commit 08c135c6cd
2 changed files with 2528 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1781,8 +1781,11 @@ def getsmallrowdata_db(columns, ids=[], doclean=True,workstrokesonly=True):
if len(ids)>1:
for f in csvfilenames:
df = dd.read_parquet(f,columns=columns,engine='pyarrow')
data.append(df)
try:
df = dd.read_parquet(f,columns=columns,engine='pyarrow')
data.append(df)
except OSError:
pass
df = dd.concat(data,axis=0)