﻿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
18207	concrete inheritence, mysql defer bug	leftmoose	nobody	"Using concrete inheritence, mysql and defer, values returned aren't properly converted to objects

regressiontests/model_inheritance_regress/tests.py
adding


{{{
    def test_concrete_ineritance_defer(self):
        Restaurant.objects.create(
            name=""Guido's House of Pasta"",
            address='944 W. Fullerton',
            serves_hot_dogs=True,
            serves_pizza=False)
        value_with_defer = Restaurant.objects.defer('name').get().serves_pizza
        self.assertIs(value_with_defer, False)
}}}

fails when using a mysql database

`value_with_defer` comes back as `0`, not `False`"	Bug	closed	Database layer (models, ORM)	1.3	Normal	duplicate			Accepted	0	0	0	0	0	0
