Skip to content

Commit

Permalink
[CONJ-380] checkStyle correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Nov 21, 2016
1 parent c500473 commit 6b1203a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWIS
package org.mariadb.jdbc.internal.util.constant;

public final class Version {
public static final String version = "1.6.0-SNAPSHOT";
public static final String version = "1.5.5";
public static final int majorVersion = 1;
public static final int minorVersion = 6;
public static final int patchVersion = 0;
public static final String qualifier = "SNAPSHOT";
public static final int minorVersion = 5;
public static final int patchVersion = 5;
public static final String qualifier = "";

}
4 changes: 4 additions & 0 deletions src/test/java/org/mariadb/jdbc/ExecuteBatchTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

public class ExecuteBatchTest extends BaseTest {

/**
* Create tables for testing.
* @throws SQLException if connection error occur.
*/
@BeforeClass()
public static void initClass() throws SQLException {
createTable("ExecuteBatchTest", "id int not null primary key auto_increment, test varchar(100) , test2 int");
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/mariadb/jdbc/JdbcParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public void testMariaAlias() throws Throwable {
}

@Test
public void testAuroraUseBatchMultiSend () throws Throwable {
public void testAuroraUseBatchMultiSend() throws Throwable {
UrlParser notAuroraDatas = UrlParser.parse("jdbc:mariadb://localhost/test?useBatchMultiSend=true");
Assert.assertTrue(notAuroraDatas.getOptions().useBatchMultiSend);

Expand Down

0 comments on commit 6b1203a

Please sign in to comment.