#4021: [unicode] initial sql with non-ascii strings not imported
-------------------------------------------------------+--------------------
Reporter: Ivan Sagalaev <[EMAIL PROTECTED]> | Owner: jacob
Status: new | Component:
Uncategorized
Version: other branch | Keywords: unicode
Stage: Unreviewed | Has_patch: 0
-------------------------------------------------------+--------------------
An SQL file containing utf-8 encoded data looking like this:
{{{
set names utf8;
insert into cicero_forum (`slug`, `name`, `group`, `ordering`) values
('test', 'Тестовый форум', 'Тест', 0);
}}}
breaks initial syncdb with mysql backend:
{{{
'ascii' codec can't decode byte 0xd0 in position 81: ordinal not in
range(128)
}}}
Evidently there's a plain str-to-unicode conversion somewhere...
--
Ticket URL: <http://code.djangoproject.com/ticket/4021>
Django Code <http://code.djangoproject.com/>
The web framework for perfectionists with deadlines
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [EMAIL PROTECTED]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---