-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't handle array type #9
Comments
Hi, There are many (often obscure, specialised, little used) primitive types in PostgreSQL. P3 does current not support them all, just the most common ones. There is no support for ARRAY types, yet. [ https://www.postgresql.org/docs/9.4/arrays.html ] This basically requires the implementation of a 'array-value parser'. [ https://www.postgresql.org/docs/9.4/arrays.html#ARRAYS-IO ] This could be put on the todo list, but it won't happen immediately. Sven |
I was just the first thing I ran into when trying out p3. After creating the issue I went back and re-read the README and saw that you didn't specify full postgresql type support. I should propably have done by due diligence first before reporting this. |
Well, it is of course not much fun, and not a great first experience, if that happens on your first query. I'll see what I can do, but can't promise anything. |
No need for promises :-) I'm currently just evaluating som smalltalk library options, and ran across this library as I believe it was a rather recent option. |
c09e9d4 adds support for some common array types can you test ? |
It works great! |
Thanks for testing, Peter. |
Trying to select a _varchar (array) column I get this Error (cannot convert typeOid 1015):
The text was updated successfully, but these errors were encountered: