예제 #1
0
 def test_distinct_more_exprs(self):
     self.assertEqual(str(Count(('col1', 'col2')).distinct()),
                      'COUNT(DISTINCT "col1", "col2")')
예제 #2
0
 def test_distinct_by_method(self):
     self.assertEqual(str(Count('col').distinct()), 'COUNT(DISTINCT "col")')
예제 #3
0
 def test_distinct_by_method_with_param(self):
     self.assertEqual(str(Count('col').distinct(False)), 'COUNT("col")')
예제 #4
0
 def test_count_without_param(self):
     self.assertEqual(str(Count()), 'COUNT(*)')
예제 #5
0
 def test_distinct(self):
     self.assertEqual(str(Count('col', True)), 'COUNT(DISTINCT "col")')
예제 #6
0
 def test_normal(self):
     self.assertEqual(str(Count('col')), 'COUNT("col")')
예제 #7
0
 def test_count_with_star(self):
     self.assertEqual(str(Count('*')), 'COUNT(*)')
예제 #8
0
 def test_distinct_by_method_with_param(self):
     assert str(Count('col').distinct(False)) == 'COUNT("col")'
예제 #9
0
 def test_distinct_more_exprs(self):
     assert str(Count(('col1', 'col2')).distinct()) == 'COUNT(DISTINCT "col1", "col2")'
예제 #10
0
 def test_distinct_by_method(self):
     assert str(Count('col').distinct()) == 'COUNT(DISTINCT "col")'
예제 #11
0
 def test_distinct(self):
     assert str(Count('col', True)) == 'COUNT(DISTINCT "col")'
예제 #12
0
 def test_count_without_param(self):
     assert str(Count()) == 'COUNT(*)'
예제 #13
0
 def test_count_with_star(self):
     assert str(Count('*')) == 'COUNT(*)'
예제 #14
0
 def test_normal(self):
     assert str(Count('col')) == 'COUNT("col")'