﻿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
24709	ArrayField doesn't support .update() and F() objects	ris	nobody	"On a model along the lines of

{{{
class ModelA ( models.Model ):
    name = TextField ()
    name_array = ArrayField ( models.TextField () )
}}}

If you perform

{{{
>>> ModelA.objects.update ( name_array = [ F ( ""name"" ) ] )
}}}

You end up with

{{{
>>> ModelA.objects.all ()[0].name_array
[u'F(name)']
}}}

I see what you've done there django, but that's not quite what I meant."	New feature	closed	contrib.postgres	1.8	Normal	duplicate	postgresql contrib arrayfield update	info@…	Accepted	0	0	0	0	0	0
