20
20
import java .util .logging .Level ;
21
21
import java .util .logging .Logger ;
22
22
import java .util .stream .Stream ;
23
+
24
+ import net .snowflake .client .annotations .DontRunOnJenkins ;
23
25
import net .snowflake .client .category .TestTags ;
24
26
import net .snowflake .client .core .ObjectMapperFactory ;
25
27
import net .snowflake .client .core .UUIDUtils ;
34
36
import org .junit .jupiter .params .provider .ArgumentsSource ;
35
37
36
38
@ Tag (TestTags .STATEMENT )
39
+
37
40
public class LobSizeLatestIT extends BaseJDBCTest {
38
41
39
42
private static final Logger logger = Logger .getLogger (SnowflakeDriverIT .class .getName ());
@@ -132,6 +135,7 @@ public static void tearDown() throws SQLException {
132
135
133
136
@ ParameterizedTest
134
137
@ ArgumentsSource (DataProvider .class )
138
+ @ DontRunOnJenkins // the MxLobParameters isn't configured properly on new environment
135
139
public void testStandardInsertAndSelectWithMaxLobSizeEnabled (int lobSize , String resultFormat )
136
140
throws SQLException {
137
141
try (Connection con = BaseJDBCTest .getConnection ();
@@ -154,6 +158,7 @@ public void testStandardInsertAndSelectWithMaxLobSizeEnabled(int lobSize, String
154
158
155
159
@ ParameterizedTest
156
160
@ ArgumentsSource (DataProvider .class )
161
+ @ DontRunOnJenkins // the MxLobParameters isn't configured properly on new environment
157
162
public void testPreparedInsertWithMaxLobSizeEnabled (int lobSize , String resultFormat )
158
163
throws SQLException {
159
164
try (Connection con = BaseJDBCTest .getConnection ();
@@ -176,6 +181,7 @@ public void testPreparedInsertWithMaxLobSizeEnabled(int lobSize, String resultFo
176
181
177
182
@ ParameterizedTest
178
183
@ ArgumentsSource (DataProvider .class )
184
+ @ DontRunOnJenkins // the MxLobParameters isn't configured properly on new environment
179
185
public void testPutAndGet (int lobSize , String resultFormat ) throws IOException , SQLException {
180
186
File tempFile = File .createTempFile ("LobSizeTest" , ".csv" );
181
187
// Delete file when JVM shuts down
0 commit comments