From 05b5fb4c6b4e167ffefbd17e9530d87db027d942 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 5 Sep 2016 22:18:29 +0300 Subject: [PATCH] Add a semicolon and a newline after directive --- demo/demo.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.2