﻿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
33064	Created Model is not showing in Django Atomic Trasaction Block	Dipen Sompura	nobody	"Following code not working, it should increase count within the block itself:

I am using django with mysql database.
{{{#!python
>>> len(ModelObject.objects.all())
89
>>> with transaction.atomic():
...     ModelObject.objects.create(modelId=""123"")
...     print(len(ModelObject.objects.all()))
... 
<ModelObject: ModelObject object (16125)>
89
>>> len(ModelObject.objects.all())
90
}}}"	Bug	closed	Database layer (models, ORM)	3.1	Normal	worksforme	transaction atomic mysql		Unreviewed	0	0	0	0	0	0
