HHH-7117 - Fix and test
This commit is contained in:
parent
34611877c8
commit
4e2d7d123d
|
@ -123,7 +123,7 @@ options {
|
|||
}
|
||||
|
||||
STMT_END
|
||||
: ';'
|
||||
: ';' ( '\t' | ' ' | '\r' | '\n' )*
|
||||
;
|
||||
|
||||
NOT_STMT_END
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
|
||||
-- Sample file used to test import feature of multiline SQL script (HHH-2403).
|
||||
-- Contains various SQL instructions with comments.
|
||||
|
||||
|
@ -27,4 +28,5 @@ INSERT INTO test_data (id, text)
|
|||
(
|
||||
4 -- another record
|
||||
, NULL
|
||||
);
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue