-
Notifications
You must be signed in to change notification settings - Fork 51
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
Parse bpchar to ShortString? #207
Comments
It's probably going to be short, but what if it isn't? We can use We should also rework the parsing code to make it easier to parse bpchar as any string type, not just |
I am not sure pragmatically how useful this is, |
Probably in legacy or migrated systems. There are also databases that can communicate with libpq that aren't PostgreSQL, like Redshift. |
just a random thought.
Since bpchar i.e.
char(n)
is fixed length, it is probably going to be short.And then we could use https://github.com/xiaodaigh/ShortStrings.jl/
Though that doesn't yet have
strip
implemented on it, would be easy to do and would run fast though.The text was updated successfully, but these errors were encountered: