mysql 2.6.0-2.6.1 conversion script: comments not formatted properly
GENERAL
TESTING
GENERAL
TESTING
Description
For our version of mysql (5.0.45), when we run sakai_2_6_0-2_6_1_mysql_conversion.sql any comments that contain no space between the '--' and the actual comment confuse mysql and cause it to error.
---------------
"From a "-- " sequence to the end of the line. In MySQL, the "-- " (double-dash) comment style requires the second dash to be followed by at least one whitespace or control character (such as a space, tab, newline, and so on). This syntax differs slightly from standard SQL comment syntax, as discussed in Section 1.8.5.5, "'--' as the Start of a Comment".
Sam Ottenhoff August 5, 2010 at 8:04 AM
Subversion commit is not showing up because of bad JIRA # in commit.
For our version of mysql (5.0.45), when we run sakai_2_6_0-2_6_1_mysql_conversion.sql any comments that contain no space between the '--' and the actual comment confuse mysql and cause it to error.
Good:
– Here is my comment!
Bad:
--Here is my comment!