Created
October 28, 2014 13:18
-
-
Save ludoo/ca6ed07e5c8017272701 to your computer and use it in GitHub Desktop.
Django aggregates GROUP_CONCAT support for MySQL
This file contains 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
""" | |
From http://harkablog.com/inside-the-django-orm-aggregates.html | |
with a couple of fixes. | |
Usage: MyModel.objects.all().annotate(new_attribute=Concat('related__attribute', separator=':') | |
""" | |
from django.db.models import Aggregate | |
from django.db.models.sql.aggregates import Aggregate as SQLAggregate | |
class Concat(Aggregate): | |
def add_to_query(self, query, alias, col, source, is_summary): | |
aggregate = SQLConcat(col, source=source, is_summary=is_summary, **self.extra) | |
query.aggregates[alias] = aggregate | |
class SQLConcat(SQLAggregate): | |
sql_function = 'group_concat' | |
@property | |
def sql_template(self): | |
separator = self.extra.get('separator') | |
if separator: | |
return '%(function)s(%(field)s, "%(separator)s")' | |
else: | |
return '%(function)s(%(field)s)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This module has been removed now
django.db.models.sql.aggregates
.