fix version # of support for 'insert returning' on Maria

This commit is contained in:
Gavin 2022-12-19 16:30:56 +01:00 committed by Gavin King
parent 7b387f3ecf
commit 00edf48483
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ public class MariaDBDialect extends MySQLDialect {
@Override
public boolean supportsInsertReturning() {
return true;
return getVersion().isSameOrAfter( 10, 5 );
}
@Override