diff options
Diffstat (limited to 'django/db/backends/mysql/operations.py')
-rw-r--r-- | django/db/backends/mysql/operations.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/mysql/operations.py b/django/db/backends/mysql/operations.py index fd7b8153ba..babf522e45 100644 --- a/django/db/backends/mysql/operations.py +++ b/django/db/backends/mysql/operations.py @@ -308,3 +308,6 @@ class DatabaseOperations(BaseDatabaseOperations): match_option = 'c' if lookup_type == 'regex' else 'i' return "REGEXP_LIKE(%%s, %%s, '%s')" % match_option + + def insert_statement(self, ignore_conflicts=False): + return 'INSERT IGNORE INTO' if ignore_conflicts else super().insert_statement(ignore_conflicts) |