File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/test/java/examples/window_functions Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4545import org .mybatis .dynamic .sql .select .aggregate .WindowDSL ;
4646import org .mybatis .dynamic .sql .select .render .SelectStatementProvider ;
4747import org .mybatis .dynamic .sql .util .mybatis3 .CommonSelectMapper ;
48- import org .testcontainers .containers .MySQLContainer ;
4948import org .testcontainers .junit .jupiter .Container ;
5049import org .testcontainers .junit .jupiter .Testcontainers ;
50+ import org .testcontainers .mysql .MySQLContainer ;
5151
5252/**
5353 * Note: the data and tests in this class are taken from the MySQL
5757@ Testcontainers
5858class WindowFunctionsTest {
5959
60- @ SuppressWarnings ("resource" )
6160 @ Container
62- private static final MySQLContainer <?> mysql =
63- new MySQLContainer <>(TestContainersConfiguration .MYSQL_LATEST )
61+ private static final MySQLContainer mysql =
62+ new MySQLContainer (TestContainersConfiguration .MYSQL_LATEST )
63+ .withUrlParam ("openTelemetry" , "DISABLED" )
6464 .withInitScript ("examples/window_functions/CreateDB.sql" );
6565
6666 private SqlSessionFactory sqlSessionFactory ;
You can’t perform that action at this time.
0 commit comments