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

View File

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