Skip to content

Commit

Permalink
Update driver version
Browse files Browse the repository at this point in the history
  • Loading branch information
gartens committed Aug 28, 2024
1 parent 3ca4f81 commit 2a9c63a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies {
implementation 'org.slf4j:slf4j-simple:1.7.5'
implementation 'org.xerial:sqlite-jdbc:3.7.2'

implementation 'org.polypheny:polypheny-jdbc-driver:1.5.2'
implementation 'org.polypheny:polypheny-jdbc-driver:2.3'

// Use JUnit test framework
testImplementation 'junit:junit:4.12'
Expand Down
4 changes: 2 additions & 2 deletions config/polypheny/auctionmark.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<!-- Connection details -->
<dbtype>POLYPHENY</dbtype>

<driver>org.polypheny.jdbc.Driver</driver>
<driver>org.polypheny.jdbc.PolyphenyDriver</driver>
<DBUrl>jdbc:polypheny://localhost/</DBUrl>
<username>pa</username>
<password></password>

<ddlFileName>auctionmark-polypheny-ddl.sql</ddlFileName>

<isolation>TRANSACTION_SERIALIZABLE</isolation>
<isolation>TRANSACTION_READ_COMMITTED</isolation>

<!-- Scalefactor in AuctionMark scales by *1000 the number of customers-->
<scalefactor>10</scalefactor>
Expand Down
4 changes: 2 additions & 2 deletions config/polypheny/smallbank.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
<!-- Connection details -->
<dbtype>POLYPHENY</dbtype>

<driver>org.polypheny.jdbc.Driver</driver>
<driver>org.polypheny.jdbc.PolyphenyDriver</driver>
<DBUrl>jdbc:polypheny://localhost/</DBUrl>
<username>pa</username>
<password></password>

<ddlFileName>smallbank-polypheny-ddl.sql</ddlFileName>

<isolation>TRANSACTION_SERIALIZABLE</isolation>
<isolation>TRANSACTION_READ_COMMITTED</isolation>
<batchsize>128</batchsize>

<scalefactor>1</scalefactor>
Expand Down
4 changes: 2 additions & 2 deletions config/polypheny/tpcc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!-- Connection details -->
<dbtype>POLYPHENY</dbtype>

<driver>org.polypheny.jdbc.Driver</driver>
<driver>org.polypheny.jdbc.PolyphenyDriver</driver>
<DBUrl>jdbc:polypheny://localhost/</DBUrl>
<username>pa</username>
<password></password>
Expand All @@ -17,7 +17,7 @@
<!-- The name needs to end with "-dialects.xml". -->
<dialectFileName></dialectFileName>

<isolation>TRANSACTION_SERIALIZABLE</isolation>
<isolation>TRANSACTION_READ_COMMITTED</isolation>
<batchsize>128</batchsize>

<!-- Scale factor is the number of warehouses in TPCC -->
Expand Down
4 changes: 2 additions & 2 deletions config/polypheny/tpch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<!-- Connection details -->
<dbtype>POLYPHENY</dbtype>

<driver>org.polypheny.jdbc.Driver</driver>
<driver>org.polypheny.jdbc.PolyphenyDriver</driver>
<DBUrl>jdbc:polypheny://localhost/</DBUrl>
<username>pa</username>
<password></password>

<isolation>TRANSACTION_SERIALIZABLE</isolation>
<isolation>TRANSACTION_READ_COMMITTED</isolation>
<batchsize>128</batchsize>

<!-- Location for the files generated by tpch dbgen -->
Expand Down
4 changes: 2 additions & 2 deletions config/polypheny/ycsb.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<!-- Connection details -->
<dbtype>POLYPHENY</dbtype>

<driver>org.polypheny.jdbc.Driver</driver>
<driver>org.polypheny.jdbc.PolyphenyDriver</driver>
<DBUrl>jdbc:polypheny://localhost/</DBUrl>
<username>pa</username>
<password></password>

<isolation>TRANSACTION_SERIALIZABLE</isolation>
<isolation>TRANSACTION_READ_COMMITTED</isolation>
<batchsize>128</batchsize>

<!-- Scalefactor in YCSB is *1000 the number of rows in the USERTABLE-->
Expand Down

0 comments on commit 2a9c63a

Please sign in to comment.