]> git.phdru.name Git - sqlconvert.git/commitdiff
Add a semicolon and a newline after directive
authorOleg Broytman <phd@phdru.name>
Mon, 5 Sep 2016 19:18:29 +0000 (22:18 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 5 Sep 2016 19:18:29 +0000 (22:18 +0300)
demo/demo.sql

index 64818c3818e1208d6ccde243a3aadd1e8e7dfd00..bb081d92a784b57530a9ed69f91b4c32e592f297 100644 (file)
@@ -1,6 +1,7 @@
 SELECT * FROM `mytable`; -- line-comment"
 INSERT into /* inline comment */ mytable VALUES (1, 'ั‚ะตัั‚');
-/*! directive*/ INSERT INTO `MyTable` (`Id`, `Name`)
+/*! directive*/;
+INSERT INTO `MyTable` (`Id`, `Name`)
 VALUES (1, 'one');
 
 -- The end