Commit b0978eaf authored by Vincent Pelletier's avatar Vincent Pelletier

SQLExpression: Fix typo in method casing.

parent 1f2850cd
...@@ -327,7 +327,7 @@ class SQLExpression(object): ...@@ -327,7 +327,7 @@ class SQLExpression(object):
""" """
return SQL_LIST_SEPARATOR.join(str(x) for x in self.getLimit()) return SQL_LIST_SEPARATOR.join(str(x) for x in self.getLimit())
def getGroupByset(self): def getGroupBySet(self):
""" """
Returns a set of strings. Returns a set of strings.
...@@ -336,7 +336,7 @@ class SQLExpression(object): ...@@ -336,7 +336,7 @@ class SQLExpression(object):
""" """
result = {self._reversed_select_dict.get(x, x) for x in self.group_by_list} result = {self._reversed_select_dict.get(x, x) for x in self.group_by_list}
for sql_expression in self.sql_expression_list: for sql_expression in self.sql_expression_list:
result.update(sql_expression.getGroupByset()) result.update(sql_expression.getGroupBySet())
return result return result
def getGroupByExpression(self): def getGroupByExpression(self):
...@@ -345,7 +345,7 @@ class SQLExpression(object): ...@@ -345,7 +345,7 @@ class SQLExpression(object):
Returns a rendered "group by" expression. See getGroupBySet. Returns a rendered "group by" expression. See getGroupBySet.
""" """
return SQL_LIST_SEPARATOR.join(self.getGroupByset()) return SQL_LIST_SEPARATOR.join(self.getGroupBySet())
def getSelectDict(self): def getSelectDict(self):
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment