From: Oleg Broytman Date: Mon, 5 Sep 2016 19:18:29 +0000 (+0300) Subject: Add a semicolon and a newline after directive X-Git-Tag: 0.0.5~8 X-Git-Url: https://git.phdru.name/?p=sqlconvert.git;a=commitdiff_plain;h=05b5fb4c6b4e167ffefbd17e9530d87db027d942 Add a semicolon and a newline after directive --- diff --git a/demo/demo.sql b/demo/demo.sql index 64818c3..bb081d9 100644 --- a/demo/demo.sql +++ b/demo/demo.sql @@ -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