-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Sybasease+informix (tpcc and ycsb) #383
base: main
Are you sure you want to change the base?
Conversation
} | ||
} catch (java.lang.InstantiationException | java.lang.IllegalAccessException ex) { | ||
throw new RuntimeException("Failed to initialize JDBC driver '" + this.driverClass + "'", ex); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: please fix the whitespace alignment
@@ -97,7 +190,7 @@ | |||
<dependency> | |||
<groupId>org.mariadb.jdbc</groupId> | |||
<artifactId>mariadb-java-client</artifactId> | |||
<version>3.1.4</version> | |||
<version>2.7.8</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please revert
@@ -110,7 +203,7 @@ | |||
<dependency> | |||
<groupId>com.google.cloud</groupId> | |||
<artifactId>google-cloud-spanner-jdbc</artifactId> | |||
<version>2.9.16</version> | |||
<version>2.9.13</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please revert
@@ -49,6 +49,71 @@ | |||
</distributionManagement> | |||
|
|||
<profiles> | |||
<profile> | |||
<id>arcion</id> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what's this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will need some testing support. Please have a look at .github/workloads/maven.yml
and/or #379 for some examples on how to add that. Thanks!
Just noticed this. Is this a duplicate then? Can you close one of them or combine their changes in a single PR so we're not having to review multiple things? Thanks! |
Corrections as per the comments in #364