-
-
Notifications
You must be signed in to change notification settings - Fork 266
Postgresql JSON #1121
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
Merged
Merged
Postgresql JSON #1121
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Member
Author
|
WIP |
This will ensure back compatibility with previous versions of PyBossa.
This commit checks for the info attribute in the query, so the method uses SQL instead of SQAlchemy.
This commit adds a work around for querying JSON data. SQLAlchemy needs to use filter instead of filter_by to do queries, unless you do a CAST. PostgreSQL accepts '"astring"' as JSON valid, so if you want to search you need to do a cast before querying it. This commit fixes this by including an exception and handling it properly.
Conflicts: pybossa/model/project.py pybossa/model/task.py pybossa/model/task_run.py pybossa/model/user.py
* master: Update theme submodule Remove print Rename Only query for the task needed Revert "Use SQLAlchemy language for queries" Use SQLAlchemy language for queries Upgrade SQLAlchemy to v1.0.5 Remove unused Flask-Cache dependency
* alt-postgresql-json: Ensure valid json format Add info in tasks Back to keyword API for repos Revert using raw JSON in project and user info fields Fix alembic revision after merge master Typo in sql query Clean unused imports and use JSON type"
|
|
Contributor
|
🍰 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Support the native PostgreSQL JSON data format. This will improve how data is stored, as well as we'll be able to query items using SQL.