Skip to content
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

sqlite3.OperationalError: no such column: id #5

Closed
simonw opened this issue Dec 6, 2023 · 0 comments
Closed

sqlite3.OperationalError: no such column: id #5

simonw opened this issue Dec 6, 2023 · 0 comments
Labels
bug Something isn't working

Comments

@simonw
Copy link
Owner

simonw commented Dec 6, 2023

Got this error trying to enable chronicle on a table that didn't have an id column. Turns out it was because of the new window function:

SELECT
{', '.join([f'"{col[0]}"' for col in primary_key_columns])},
{current_time_expr},
{current_time_expr},
ROW_NUMBER() OVER (ORDER BY id)
FROM "{table_name}";

ROW_NUMBER() OVER (ORDER BY id)

That needs to be ORDER BY then the full set of primary keys.

@simonw simonw added the bug Something isn't working label Dec 6, 2023
@simonw simonw closed this as completed in 52f6358 Dec 6, 2023
simonw added a commit that referenced this issue Dec 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant