{{{
def execute_sql_flush(self, using, sql_list):
}}}
The `using` argument can be dropped and inferred by the calling instance:
`self.connection.alias`.
{{{
def execute_sql_flush(self, sql_list):
}}}
Some internal ises of this method are already doing:
{{{
connection.ops.execute_sql_flush(connection.alias, sql_flush)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/31477>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* has_patch: 0 => 1
Comment:
https://github.com/django/django/pull/12741
--
Ticket URL: <https://code.djangoproject.com/ticket/31477#comment:1>
* stage: Unreviewed => Accepted
--
Ticket URL: <https://code.djangoproject.com/ticket/31477#comment:2>
* status: new => closed
* resolution: => fixed
Comment:
In [changeset:"5673d4b10240b1b00bdf060fb7ac6bef858f38a3" 5673d4b]:
{{{
#!CommitTicketReference repository=""
revision="5673d4b10240b1b00bdf060fb7ac6bef858f38a3"
Fixed #31477 -- Removed "using" argument from
DatabaseOperations.execute_sql_flush().
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/31477#comment:3>