10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-22 18:57:38 +02:00

Fix that the script not generate the two first datafile

This commit is contained in:
Mickaël Véril 2019-11-18 13:48:15 +01:00
parent 83a29add4c
commit 0af6b2d551

View File

@ -29,5 +29,5 @@ switcher={
dataType.ZPE: ZPEDataFile
}
filecls=switcher.get(dataType[args.type])
for col in range(3,np.size(dat,1)):
for col in range(1,np.size(dat,1)):
filecls.readFromTable(dat,col).toFile(datapath)