Opened 14 years ago

Closed 14 years ago

#12415 closed (duplicate)

wrong parsing of SQL comments in initial SQL data

Reported by: samlowry Owned by: nobody
Component: Core (Management commands) Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Function custom_sql_for_model in core/management/sql.py incorrectly cut SQL comments - without considering to a query context. For example, function cuts end of such query:

INSERT INTO `table` (`description`) VALUES ('Come play on our boat -- On the Water');

It's because of a very simple regexp at line 187:

statement = re.sub(ur"^--.*([\n\Z]|$)", "", statement)

Change History (1)

comment:1 by Alex Gaynor, 14 years ago

Resolution: duplicate
Status: newclosed

Dupe of #3214.

Note: See TracTickets for help on using tickets.
Back to Top