Require pgsql 14+ for `compression pglz` column option

This commit is contained in:
Marco Belladelli 2024-09-16 10:32:37 +02:00
parent 829b990585
commit e66cbc1d8f
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ import org.junit.jupiter.api.Test;
@Jpa(annotatedClasses = OptionsTest.WithOptions.class,
useCollectingStatementInspector = true)
@RequiresDialect(PostgreSQLDialect.class)
@RequiresDialect(value = PostgreSQLDialect.class, majorVersion = 14)
public class OptionsTest {
@Test void test(EntityManagerFactoryScope scope) throws SchemaValidationException {
SchemaManager schemaManager = scope.getEntityManagerFactory().getSchemaManager();