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