Skip to content

Commit aae57db

Browse files
1 parent 58b1096 commit aae57db

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/test/java/net/snowflake/client/jdbc/LobSizeLatestIT.java

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
import java.util.logging.Level;
2121
import java.util.logging.Logger;
2222
import java.util.stream.Stream;
23+
24+
import net.snowflake.client.annotations.DontRunOnJenkins;
2325
import net.snowflake.client.category.TestTags;
2426
import net.snowflake.client.core.ObjectMapperFactory;
2527
import net.snowflake.client.core.UUIDUtils;
@@ -34,6 +36,7 @@
3436
import org.junit.jupiter.params.provider.ArgumentsSource;
3537

3638
@Tag(TestTags.STATEMENT)
39+
3740
public class LobSizeLatestIT extends BaseJDBCTest {
3841

3942
private static final Logger logger = Logger.getLogger(SnowflakeDriverIT.class.getName());
@@ -132,6 +135,7 @@ public static void tearDown() throws SQLException {
132135

133136
@ParameterizedTest
134137
@ArgumentsSource(DataProvider.class)
138+
@DontRunOnJenkins // the MxLobParameters isn't configured properly on new environment
135139
public void testStandardInsertAndSelectWithMaxLobSizeEnabled(int lobSize, String resultFormat)
136140
throws SQLException {
137141
try (Connection con = BaseJDBCTest.getConnection();
@@ -154,6 +158,7 @@ public void testStandardInsertAndSelectWithMaxLobSizeEnabled(int lobSize, String
154158

155159
@ParameterizedTest
156160
@ArgumentsSource(DataProvider.class)
161+
@DontRunOnJenkins // the MxLobParameters isn't configured properly on new environment
157162
public void testPreparedInsertWithMaxLobSizeEnabled(int lobSize, String resultFormat)
158163
throws SQLException {
159164
try (Connection con = BaseJDBCTest.getConnection();
@@ -176,6 +181,7 @@ public void testPreparedInsertWithMaxLobSizeEnabled(int lobSize, String resultFo
176181

177182
@ParameterizedTest
178183
@ArgumentsSource(DataProvider.class)
184+
@DontRunOnJenkins // the MxLobParameters isn't configured properly on new environment
179185
public void testPutAndGet(int lobSize, String resultFormat) throws IOException, SQLException {
180186
File tempFile = File.createTempFile("LobSizeTest", ".csv");
181187
// Delete file when JVM shuts down

0 commit comments

Comments
 (0)