- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Nifi executeSql on postgresql produce error cannot be converted to Avro type
- Labels:
-
Apache NiFi
Created 06-12-2018 11:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
When executing a select statement in executeSql processor on a posrgresql i get this error
Unknown SQL type 1111 cannot be converted to Avro type
The column causing this is a json type column, i have tried to google how to cast the json to a string put i doesn't seems to be so simple.
It works fine when i does it without that column
Does anybody know about a workaround on this.
Created 06-13-2018 12:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I found the solution my self, much more simple than i first thought, just cast the json type to text and avro will accept it.
select cast (json column as text ) columnName
from table
Created 06-13-2018 12:02 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I found the solution my self, much more simple than i first thought, just cast the json type to text and avro will accept it.
select cast (json column as text ) columnName
from table
