Unverified Kaydet (Commit) ac29fec1 authored tarafından Mariusz Felisiak's avatar Mariusz Felisiak Kaydeden (comit) GitHub

Removed unused function argument from Window.as_sql().

Unused since its introduction in d549b880.
üst 49b67937
......@@ -1237,7 +1237,7 @@ class Window(Expression):
def set_source_expressions(self, exprs):
self.source_expression, self.partition_by, self.order_by, self.frame = exprs
def as_sql(self, compiler, connection, function=None, template=None):
def as_sql(self, compiler, connection, template=None):
connection.ops.check_expression_support(self)
expr_sql, params = compiler.compile(self.source_expression)
window_sql, window_params = [], []
......
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