mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #29103 -- Removed bad 'b'-prefix added by MySQL's SchemaEditor.quote_value().
This commit is contained in:
parent
aa0ee372cd
commit
3c4ff21763
3 changed files with 8 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
|||
from django.db import connection
|
||||
from django.test import SimpleTestCase
|
||||
from django.test import TestCase
|
||||
from django.test.utils import patch_logger
|
||||
|
||||
|
||||
class SchemaLoggerTests(SimpleTestCase):
|
||||
class SchemaLoggerTests(TestCase):
|
||||
|
||||
def test_extra_args(self):
|
||||
editor = connection.schema_editor(collect_sql=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue