You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've enabled PID kff1201 - Miles Per Gallon(Instant). It's being stored in the raw_logs, however it's not available to plot.
Looking at the source code the issue appears to be that the column is created as a VARCHAR(255), whilst get_columns.php is only looking for FLOATS.
Changing the column type to a FLOAT through MySQL fixes this issue, however as there is no Column Comment the description isn't pulled through.
Either the column comment should be added at the same time as the column, or the description should be pulled from the csv each time.
The text was updated successfully, but these errors were encountered:
I changed the type from char to float with phpmyadmin and set "comment" manually. It seems that all new columns are created as chars and dont get listed in the pulldown menu.
I've enabled PID kff1201 - Miles Per Gallon(Instant). It's being stored in the raw_logs, however it's not available to plot.
Looking at the source code the issue appears to be that the column is created as a VARCHAR(255), whilst get_columns.php is only looking for FLOATS.
Changing the column type to a FLOAT through MySQL fixes this issue, however as there is no Column Comment the description isn't pulled through.
Either the column comment should be added at the same time as the column, or the description should be pulled from the csv each time.
The text was updated successfully, but these errors were encountered: