Skip to content

Commit

Permalink
feat: register mysql.jdbc.Driver class with Kdriver (#160)
Browse files Browse the repository at this point in the history
Signed-off-by: Sarthak160 <rocksarthak45@gmail.com>
  • Loading branch information
Sarthak160 committed Dec 6, 2023
1 parent 48d2cfe commit d9e5be5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integration/src/main/java/io/keploy/ksql/KDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ private Driver getWrappedDriver() throws SQLException {
case "com.mysql.cj.jdbc.Driver":
d = new com.mysql.cj.jdbc.Driver();
break;
case "com.mysql.jdbc.Driver":
d = new com.mysql.jdbc.Driver();
break;
case "org.h2.Driver":
d = new org.h2.Driver();
break;
Expand Down

0 comments on commit d9e5be5

Please sign in to comment.