mirror of
https://github.com/django/django.git
synced 2025-07-24 13:44:32 +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
|
@ -9,6 +9,7 @@ class SchemaEditorTests(TestCase):
|
|||
def test_quote_value(self):
|
||||
editor = connection.schema_editor()
|
||||
tested_values = [
|
||||
('string', "'string'"),
|
||||
(42, '42'),
|
||||
(1.754, '1.754'),
|
||||
(False, '0'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue