mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	[1.8.x] Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays.
Backport of 88fc9e2826 from master
			
			
This commit is contained in:
		| @@ -218,6 +218,13 @@ class TestQuerying(TestCase): | ||||
|             self.objs[0:3] | ||||
|         ) | ||||
|  | ||||
|     def test_len_empty_array(self): | ||||
|         obj = NullableIntegerArrayModel.objects.create(field=[]) | ||||
|         self.assertSequenceEqual( | ||||
|             NullableIntegerArrayModel.objects.filter(field__len=0), | ||||
|             [obj] | ||||
|         ) | ||||
|  | ||||
|     def test_slice(self): | ||||
|         self.assertSequenceEqual( | ||||
|             NullableIntegerArrayModel.objects.filter(field__0_1=[2]), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user