HHH-14665 Fix schema generation test missing the default semi-colon in comments

This commit is contained in:
Christian Beikov 2021-06-08 23:05:51 +02:00
parent 10cba26bda
commit 66ae1c9557
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class TableCommentTest extends BaseNonConfigCoreFunctionalTestCase {
final String tableName = getTableName();
for ( String sqlStatement : sqlLines ) {
if ( sqlStatement.toLowerCase()
.equals( "comment on table " + tableName.toLowerCase() + " is 'comment snippet'" ) ) {
.equals( "comment on table " + tableName.toLowerCase() + " is 'comment snippet';" ) ) {
if ( getDialect().supportsCommentOn() ) {
found = true;
}