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
{{ message }}
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
It will occur "column "id" does not exist" if the table named "user" durning diff process. So, it might be escape table name for avoiding table naming issue.
I have run into this issue as well, the fix seems simple enough (putting quotes around {tablename}:
...
SQL_TEMPLATE_HASH = f"""
SELECT md5(array_agg(md5((t.*)::varchar))::varchar)
FROM (
SELECT *
FROM "{tablename}"
ORDER BY {pk} limit :row_limit offset :row_offset
) AS t;
"""
...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
It will occur "column "id" does not exist" if the table named "user" durning diff process. So, it might be escape table name for avoiding table naming issue.
pgdatadiff/pgdatadiff/pgdatadiff.py
Line 64 in caf9b45
Thank you.
The text was updated successfully, but these errors were encountered: