NoConversionRule TimestampTz(true) for Arrow2TypeSystem #220
Unanswered
glennpierce
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @glennpierce , can you try the newest alpha version: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to load rows from a postgres query into a polars dataframe but getting a conversion error.
thread 'tokio-runtime-worker' panicked at 'called
Result::unwrap()
on anErr
value: ConnectorX(NoConversionRule("TimestampTz(true)", "connectorx::destinations::arrow2::typesystem::Arrow2TypeSystem"))'The query used is
SELECT ts, s1.sensor_id, s1.value
FROM sensor_values s1
WHERE s1.sensor_id IN (620611,620613,620615,620616,620618,620706) AND s1.ts >= $1 AND
s1.ts < $2
ORDER BY 2, 1 OFFSET 0 LIMIT 500000
What can I do to get around this ?
Beta Was this translation helpful? Give feedback.
All reactions