Closed programmeddeath1 closed 1 year ago
This is not an Airflow ClickHouse Plugin specific issue: you have misused Airflow XComs. Read about them here: https://airflow.apache.org/docs/apache-airflow/stable/concepts/xcoms.html
Probably your operator has returned a value and one of the fields is of type datetime
. This type is not JSON serializeable. In your ClickHouse query convert the datetime value into a string using toString
function of ClickHouse.
When trying to run a select query on a clickhouse table with a datetime variable it fails as below
How can i handle datetime variable separately?