-
Notifications
You must be signed in to change notification settings - Fork 181
[wip] native JSON support #59
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
Conversation
nice articles that helped me a lot: |
Actually my example is bad. The escapeName doesn't even do anything with select columns. The escapeName is only called from createTable and columns to be dropped. So there is no need to touch that code in my opinion. |
did this stall here ? It would be useful to have the 9.4 json datatypes in place now |
@jmls sad to say, I've dropped it completely. Moved away from loopback and using bookshelf.js currently. |
@aol-nnov : That's not good to hear. May I ask why ? |
@jmls well, it was a long way to go :) |
Having JSON / JSONb support would be great. It seems that maybe some ideas for code on these properties types could be pulled from the nosql connectors? Anyone have any branches of working JSON type? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Can one of the admins verify this patch? |
2 similar comments
Can one of the admins verify this patch? |
Can one of the admins verify this patch? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been closed due to continued inactivity. Thank you for your understanding. If you believe this to be in error, please contact one of the code owners, listed in the |
FWIW #304 was merged recently |
Hi!
I was i need of JSON data type power which PostgreSQL provides, so I've started working in this direction.
It seems, that there is a demand for that support already: #31, #7, so, @gebrits, @kesavkolla I invite you to collaborate in this area if you still interested.
@raymondfeng what do you think about enabling certain features in the connector (upsert support, json, whatever) based on the database version? Where in the code is the best way to test the DB version and fill a set of supported features? Should it be done automatically or set via config? Also tell me please what do you think about mods in this PR?