2020import java .util .logging .Level ;
2121import java .util .logging .Logger ;
2222import java .util .stream .Stream ;
23+
24+ import net .snowflake .client .annotations .DontRunOnJenkins ;
2325import net .snowflake .client .category .TestTags ;
2426import net .snowflake .client .core .ObjectMapperFactory ;
2527import net .snowflake .client .core .UUIDUtils ;
3436import org .junit .jupiter .params .provider .ArgumentsSource ;
3537
3638@ Tag (TestTags .STATEMENT )
39+
3740public 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