We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a64761 commit 65a6e61Copy full SHA for 65a6e61
r2dbc-mysql/src/test/java/io/asyncer/r2dbc/mysql/MariaDbIntegrationTestSupport.java
@@ -25,6 +25,8 @@
25
import io.r2dbc.spi.RowMetadata;
26
27
import org.junit.jupiter.api.Test;
28
+import org.junit.jupiter.api.condition.EnabledIf;
29
+
30
import reactor.core.publisher.Mono;
31
32
import java.time.Instant;
@@ -148,6 +150,7 @@ void returningGetRowUpdated() {
148
150
}
149
151
152
@Test
153
+ @EnabledIf("envIsMariaDb10_5_1")
154
void returningExtendedTypeInfoJson() {
155
complete(conn -> changeCapability(conn).createStatement("CREATE TEMPORARY TABLE test(" +
156
"id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, value JSON NOT NULL)")
0 commit comments