(self, compiler, connection)
| 1386 | |
| 1387 | # test changing the dict and delegating |
| 1388 | def lower_case_function_super(self, compiler, connection): |
| 1389 | self.extra["function"] = self.function.lower() |
| 1390 | return super(MySum, self).as_sql(compiler, connection) |
| 1391 | |
| 1392 | setattr(MySum, "as_" + connection.vendor, lower_case_function_super) |
| 1393 |