Member since
08-11-2020
7
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1923 | 09-02-2020 05:47 AM |
04-24-2023
01:22 AM
I believe that issue you are facing here is due to column type Geometry When data is present in HDFS , thought is mapped to a Hive Table, particular column must be in STRING which is incompatible with Geometry type column in destination postgres, Only option we have is to alter the column type to VARCHAR at postgres
... View more
09-02-2020
07:02 AM
Hi Ian, Thanks for taking time to have a look on it. I actually tried to add backslash ( \' ) but did not worked. I also tried to add 2 quotes (/!\ not double quotes) same, it did not worked. The only way it worked is to put the query behind double quotes : -q "my_query where col1 IN ('arg1','arg2')" PS: As a reminder my script is on a Shell script file .sh Thanks again Alex
... View more