HHH-14665 Fix schema generation test missing the default semi-colon in comments
This commit is contained in:
parent
10cba26bda
commit
66ae1c9557
|
@ -61,7 +61,7 @@ public class TableCommentTest extends BaseNonConfigCoreFunctionalTestCase {
|
||||||
final String tableName = getTableName();
|
final String tableName = getTableName();
|
||||||
for ( String sqlStatement : sqlLines ) {
|
for ( String sqlStatement : sqlLines ) {
|
||||||
if ( sqlStatement.toLowerCase()
|
if ( sqlStatement.toLowerCase()
|
||||||
.equals( "comment on table " + tableName.toLowerCase() + " is 'comment snippet'" ) ) {
|
.equals( "comment on table " + tableName.toLowerCase() + " is 'comment snippet';" ) ) {
|
||||||
if ( getDialect().supportsCommentOn() ) {
|
if ( getDialect().supportsCommentOn() ) {
|
||||||
found = true;
|
found = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue