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
As described in #52 (comment). The COPY logic has a bug when schema updates are required. The sync fails with an error related to a mismatch in column counts in the copy statement/table definition/internal stage files.
Draft PR up with test case #52 but still needs logic changes to fix them.
The text was updated successfully, but these errors were encountered:
Closes#48
Sqlalchemy handles some of the quoting for reserved words but we also
build sql manually so those dont get handled. Also when doing column
diffing like to decided whether a column exists or not we need to use
uppercase column names because we created them as uppercase with quotes
so case matters.
I found a bug with the COPY logic when the stream has schema updates.
Logged it in #53
and draft PR in #52.
Once that is fixed we can add a schema change to the test records with
no key properties so we assert alters work with reserved words when no
key properties are being used.
As described in #52 (comment). The COPY logic has a bug when schema updates are required. The sync fails with an error related to a mismatch in column counts in the copy statement/table definition/internal stage files.
Draft PR up with test case #52 but still needs logic changes to fix them.
The text was updated successfully, but these errors were encountered: