diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-10-22 21:18:53 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-10-22 21:18:53 +0000 |
| commit | f82e64c6b2ade3e70553b3ec2743dfaa7456ddb3 (patch) | |
| tree | 5b4f6fa0f8d5c1f9d7b9348c0e0a6c793789c155 /django | |
| parent | 411625a76101fd96f32159a3408f6735bdfd0af5 (diff) | |
Fixed #681 -- get_in_bulk no longer assumes PK fields are called id. Also added unit tests to confirm. Thanks, Jeremy Dunck
git-svn-id: http://code.djangoproject.com/svn/django/trunk@991 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/meta/__init__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/django/core/meta/__init__.py b/django/core/meta/__init__.py index f934f9dd6c..2e39f72e95 100644 --- a/django/core/meta/__init__.py +++ b/django/core/meta/__init__.py @@ -1360,9 +1360,10 @@ def function_get_sql_clause(opts, **kwargs): def function_get_in_bulk(opts, klass, *args, **kwargs): id_list = args and args[0] or kwargs['id_list'] assert id_list != [], "get_in_bulk() cannot be passed an empty list." - kwargs['where'] = ["%s.id IN (%s)" % (opts.db_table, ",".join(map(str, id_list)))] + kwargs['where'] = ["%s.%s IN (%s)" % (opts.db_table, opts.pk.column, ",".join(['%s'] * len(id_list)))] + kwargs['params'] = id_list obj_list = function_get_list(opts, klass, **kwargs) - return dict([(o.id, o) for o in obj_list]) + return dict([(getattr(o, opts.pk.column), o) for o in obj_list]) def function_get_latest(opts, klass, does_not_exist_exception, **kwargs): kwargs['order_by'] = ('-' + opts.get_latest_by,) |
