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 Jul 14, 2023. It is now read-only.
I am trying to upload a CSV data for a table which is defined like
entity UsersCompanies: ca.active, managed { key user: Association to one UsersInfo; key company: Association to one Companies; }
When doing a full load everything works fine.
When doing a delta load then an error is thrown
error: column "company" does not exist
The SQL statement generated is
STATEMENT: SELECT activeIs AS "activeIs", createdAt AS "createdAt", createdBy AS "createdBy", modifiedAt AS "modifiedAt", modifiedBy AS "modifiedBy", user_ID AS "user_ID", company_code AS "company_code" FROM UsersCompanies ALIAS_1 WHERE user = $1 AND company = $2 LIMIT 1
which indeed has the where clause fields incorrectly defined.
It seems the associations are not correctly resolved into the proper 'company_code' and 'user_ID' fields.
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to upload a CSV data for a table which is defined like
entity UsersCompanies: ca.active, managed { key user: Association to one UsersInfo; key company: Association to one Companies; }
When doing a full load everything works fine.
When doing a delta load then an error is thrown
error: column "company" does not exist
The SQL statement generated is
STATEMENT: SELECT activeIs AS "activeIs", createdAt AS "createdAt", createdBy AS "createdBy", modifiedAt AS "modifiedAt", modifiedBy AS "modifiedBy", user_ID AS "user_ID", company_code AS "company_code" FROM UsersCompanies ALIAS_1 WHERE user = $1 AND company = $2 LIMIT 1
which indeed has the where clause fields incorrectly defined.
It seems the associations are not correctly resolved into the proper 'company_code' and 'user_ID' fields.
The text was updated successfully, but these errors were encountered: