-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem in the database when using the append function. #139
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Commit 7853b44 created an issue.
When data are appended to an existing database, the variable
t
restarts from 0 and that creates a wrong series in the column.A workaround for existing databases is to open the db file and issue the following SQL:
However, this needs to be fixed in the code by inheriting and maintaining the same
t0
. We also need to add a new metadata table with a different name (such asmetadata_1
) rather than simply overwrite the content of the metadata table.The text was updated successfully, but these errors were encountered: