﻿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
31450	Querying on ArrayField(PointField) returns string instead of list	Nitin Sangwan	Lakshya Prasad	"The following code

{{{
from django.db import models
from django.contrib.postgres.fields import ArrayField
from django.contrib.gis.db.models import PointField


class Foo(models.Model):
    bar = ArrayField(models.TextField)
    baz = ArrayField(PointField())
}}}

has this wrong behaviour:


{{{
x = Foo.objects.get(id=1)
x.bar #  => ['Foo', 'Bar']
x.baz #  => '{HexRepresentationofPoint1,HexRepresentationofPoint2}'
}}}
"	Bug	assigned	contrib.postgres	3.0	Normal		ArrayField, PointField	Simon Charette	Accepted	1	0	0	1	0	0
