Closed mkgharbi closed 2 years ago
Can you give more details on which database do you use?
Hi @evoxmusic. I have tested and this problem is only in PostgreSQL. This is because PostgreSQL requires wrap table names in quotes if they contain uppercase characters. A simple solution to the problem is to wrap the table name in quotes (as in the screenshot), in which case I can reflect this behavior in the documentation.
A more complex solution is to implement automatic quotes when creating a dump for PostgreSQL.
Thank you! It works perfectly! Keep the good work!
Thank you @karpa4o4 - it will help to provide a fix
Hi, it looks like columns names have the same issue :
The following doesn't work :
transformers:
- database: public
table: User
columns:
- name: pictureUrl
...
while the following works :
transformers:
- database: public
table: User
columns:
- name: '"pictureUrl"'
...
Hi, it looks like columns names have the same issue :
The following doesn't work :
transformers: - database: public table: User columns: - name: pictureUrl ...
while the following works :
transformers: - database: public table: User columns: - name: '"pictureUrl"' ...
same here
Hi
Transformers are not working correctly with tables containing uppercase characters (in my case a table named User). When I renamed the table to user, it worked perfectly. Is there a solution to make uppercase table names work on transformers ?
The conf.yaml file I used is: