Replies: 5 comments 3 replies
-
I created a Draft PR for ltree: #382 |
Beta Was this translation helpful? Give feedback.
-
We do support array with numerical types like integer and floats, but object arrays might require some efforts in the pandas dataframe writing part since we did some optimizations for python string writing (allocate the memory in batch instead of on demand). The implementation might not be straightforward, but you can take a look at our currently implementation of supporting string type and numerical array type at here and here. Please feel free to submit a PR on this if you are interested! |
Beta Was this translation helpful? Give feedback.
-
I am trying to implement this, but I must admit I've gotten nowhere yet. I have yet to fully understand this crate and how its modules interact. The behavior I'm trying to match is Sparks. It extracts both these types as |
Beta Was this translation helpful? Give feedback.
-
Another topic: following up on sfackler/rust-postgres#960 it seams that the hex char prefix is by spec. |
Beta Was this translation helpful? Give feedback.
-
On this topic, any chance timestamp and date data types could be supported? This would also optimize queries to TimescaleDB. |
Beta Was this translation helpful? Give feedback.
-
Hi! I'm looking into adding support for more types for the Postgres sources.
I see that citext was just added.
My main concern is with Arrays. Have anyone looked into it yet ?
Beta Was this translation helpful? Give feedback.
All reactions