Таблица в памяти в DolphinDB:
t=table(10:0,`time`sym`bid`ofr,[TIMESTAMP,SYMBOL,DOUBLE,DOUBLE])
Хотелось бы добавить новый счетчик столбцов к t, я пробовал функцию addColumn, она не работала.
addColumn(t,`count,[INT])
execution was completed with exception
Usage: addColumn(table, newColNames, newColTypes). table must be a streaming table or a dfs-based table.