File tree Expand file tree Collapse file tree
databend-jdbc/src/test/java/com/databend/jdbc Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public void testSchema() {
9090 }
9191 }
9292
93- @ Test
93+ @ Test ( groups = { "IT" })
9494 public void testCreateUserFunction () throws SQLException {
9595 String s = "create or replace function add_plus(int,int)\n " +
9696 "returns int\n " +
@@ -119,7 +119,7 @@ public void testCreateUserFunction() throws SQLException {
119119 }
120120 }
121121
122- @ Test
122+ @ Test ( groups = { "IT" })
123123 public void TestMergeinto () throws SQLException {
124124 try (Connection connection = Utils .createConnection ()) {
125125 DatabendStatement statement = (DatabendStatement ) connection .createStatement ();
@@ -162,7 +162,7 @@ public void TestMergeinto() throws SQLException {
162162 }
163163 }
164164
165- @ Test
165+ @ Test ( groups = { "IT" })
166166 public void testWriteDouble () throws SQLException {
167167 try (Connection connection = Utils .createConnection ()) {
168168 DatabendStatement statement = (DatabendStatement ) connection .createStatement ();
@@ -194,7 +194,7 @@ public void testWriteDouble() throws SQLException {
194194 }
195195 }
196196
197- @ Test
197+ @ Test ( groups = { "IT" })
198198 public void testDefaultSelectNullValue () throws SQLException {
199199 try (Connection connection = Utils .createConnection ()) {
200200 DatabendStatement statement = (DatabendStatement ) connection .createStatement ();
@@ -246,7 +246,7 @@ public void testBasicWithProperties() throws SQLException {
246246 }
247247 }
248248
249- @ Test
249+ @ Test ( groups = { "IT" })
250250 public void testPrepareStatementQuery () throws SQLException {
251251 String sql = "SELECT number from numbers(100) where number = ? or number = ?" ;
252252 Connection conn = Utils .createConnection ("test_basic_driver" );
You can’t perform that action at this time.
0 commit comments