﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25666	ArrayField exact querying doesn't work with CharField	Erik Cederstrand	Dmitry Dygalo	"This is a variation of https://code.djangoproject.com/ticket/22907, except with `=` instead of `__contains`. When trying to make an exact match on a char ArrayField:

{{{#!python
CharArrayModel.objects.filter(field=['text'])
}}}

I get:
{{{
ProgrammingError: operator does not exist: character varying[] = text[]
LINE 1: ...el"" WHERE ""postgres_tests_chararraymodel"".""field"" = ARRAY['...
                                                             ^
HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.
}}}

The same happens if I use `__exact`."	Bug	closed	contrib.postgres	1.8	Normal	fixed			Ready for checkin	1	0	0	0	0	0
