Fixed #29103 -- Removed bad 'b'-prefix added by MySQL's SchemaEditor.quote_value().

This commit is contained in:
Claude Paroz 2018-02-09 16:04:00 +01:00 committed by Tim Graham
parent aa0ee372cd
commit 3c4ff21763
3 changed files with 8 additions and 5 deletions

View file

@ -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)