﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
2044	[patch] sqlinitialdata is ignoring semi-colons	ian@…	Adrian Holovaty	"currently it seems to be stripping of the semi-colons at the end of a SQL statement.. which means mysql can't import.

{{{
Index: management.py
===================================================================
--- management.py       (revision 3007)
+++ management.py       (working copy)
@@ -336,7 +336,7 @@
             (?:[^;'""]+) # not the end of a statement or start of a quote
           | (?:'[^']*') # something in single quotes
           | (?:""[^""]*"") # something in double quotes
-        )+)"""""", re.VERBOSE)
+        )+;?)"""""", re.VERBOSE)
 
     # Find custom SQL, if it's available.
     sql_files = [os.path.join(app_dir, ""%s.%s.sql"" % (opts.object_name.lower(), settings.DATABASE_ENGINE)),
}}}
"	task	closed	Translations		major	fixed			Unreviewed	1	0	0	0	0	0
