HHH-7117 - Fix and test

This commit is contained in:
Lukasz Antoniak 2012-02-24 21:35:17 +01:00
parent 34611877c8
commit 4e2d7d123d
2 changed files with 4 additions and 2 deletions

View File

@ -123,7 +123,7 @@ options {
} }
STMT_END STMT_END
: ';' : ';' ( '\t' | ' ' | '\r' | '\n' )*
; ;
NOT_STMT_END NOT_STMT_END

View File

@ -1,3 +1,4 @@
-- Sample file used to test import feature of multiline SQL script (HHH-2403). -- Sample file used to test import feature of multiline SQL script (HHH-2403).
-- Contains various SQL instructions with comments. -- Contains various SQL instructions with comments.
@ -27,4 +28,5 @@ INSERT INTO test_data (id, text)
( (
4 -- another record 4 -- another record
, NULL , NULL
); );