We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example:
====================================================================== ERROR: test_mixed_type_annotation_numbers (annotations.tests.NonAggregateAnnotationTestCase) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/tim/code/django/django/db/backends/utils.py", line 84, in _execute return self.cursor.execute(sql, params) psycopg2.errors.InvalidParameterValue: unsupported binary operator: <int> + <float>
Is there a plan to add support?
The SQL adds integer and float columns in a SELECT clause:
SELECT
SELECT ... ("annotations_book"."pages" + "annotations_book"."rating") AS "combined" FROM "annotations_book"
The text was updated successfully, but these errors were encountered:
cockroachdb/cockroach#16303 suggests this is by design and may not be fixed. Thoughts @rafiss?
Sorry, something went wrong.
No branches or pull requests
For example:
Is there a plan to add support?
The SQL adds integer and float columns in a
SELECT
clause:The text was updated successfully, but these errors were encountered: