HHH-16279 Allow scripts containing only comments in MultiLineSqlScriptExtractor

This commit is contained in:
Yoann Rodière 2023-03-10 14:13:41 +01:00
parent 5faf479451
commit 88f8e8c887
No known key found for this signature in database
GPG Key ID: C78C6E63D1D81794
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ package org.hibernate.grammars.importsql;
}
script
: (NEWLINE | SPACE | TAB)* ( commandBlock (NEWLINE | SPACE | TAB)* )+ EOF
: (NEWLINE | SPACE | TAB)* ( commandBlock (NEWLINE | SPACE | TAB)* )* EOF
;
commandBlock