Changes between Initial Version and Version 1 of Ticket #23836
- Timestamp:
- Nov 15, 2014, 9:21:08 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23836 – Description
initial v1 7 7 Aha! Then we made a test similar to the one made to test #12886, but which followed a relation. At least with postgres this resulted in an error: ```column subquery.num_awards does not exist```. 8 8 9 ``` 9 {{{ 10 10 Traceback (most recent call last): 11 11 File "/d/dev/repos/django/django/tests/aggregation/tests.py", line 664, in test_aggregation_with_limit_and_relation … … 25 25 ProgrammingError: column subquery.num_awards does not exist 26 26 LINE 1: SELECT AVG("subquery"."num_awards") FROM (SELECT "aggregatio... 27 ``` 27 }}} 28 28 29 29 I don't know how bad this is. Whether it is even supposed to work.