-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Save/load parameter to SQLite * updated code indentation and comment * Add SSL option for MySQL * Remove debug trace * Check schema version of xml and sqlite * Enhancement for storing configuration on sqlite - check hammerdb version * Enhancement for storing configuration on sqlite - check hammerdb version * Enhancement for storing configuration on sqlite - check hammerdb version Co-authored-by: Your Name <[email protected]> Co-authored-by: Steve Shaw <[email protected]>
- Loading branch information
1 parent
ae0ba66
commit 7121bd4
Showing
13 changed files
with
1,167 additions
and
512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
<connpool> | ||
<connections> | ||
<c1> | ||
<maria_host>host1</maria_host> | ||
<maria_host>host1</maria_host> | ||
<maria_port>3306</maria_port> | ||
<maria_socket>/tmp/mariadb.sock</maria_socket> | ||
<maria_ssl_options>-ssl false</maria_ssl_options> | ||
<maria_user>root</maria_user> | ||
<maria_ssl_options>-ssl false</maria_ssl_options> | ||
<maria_user>root</maria_user> | ||
<maria_pass>maria</maria_pass> | ||
<maria_dbase>tpcc</maria_dbase> | ||
</c1> | ||
<c2> | ||
<maria_host>host2</maria_host> | ||
<maria_host>host2</maria_host> | ||
<maria_port>3306</maria_port> | ||
<maria_socket>/tmp/mariadb.sock</maria_socket> | ||
<maria_ssl_options>-ssl false</maria_ssl_options> | ||
<maria_user>root</maria_user> | ||
<maria_ssl_options>-ssl false</maria_ssl_options> | ||
<maria_user>root</maria_user> | ||
<maria_pass>maria</maria_pass> | ||
<maria_dbase>tpcc</maria_dbase> | ||
</c2> | ||
<c3> | ||
<maria_host>host3</maria_host> | ||
<maria_host>host3</maria_host> | ||
<maria_port>3306</maria_port> | ||
<maria_socket>/tmp/mariadb.sock</maria_socket> | ||
<maria_ssl_options>-ssl false</maria_ssl_options> | ||
<maria_user>root</maria_user> | ||
<maria_ssl_options>-ssl false</maria_ssl_options> | ||
<maria_user>root</maria_user> | ||
<maria_pass>maria</maria_pass> | ||
<maria_dbase>tpcc</maria_dbase> | ||
</c3> | ||
</connections> | ||
<sprocs> | ||
<neworder> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</neworder> | ||
<payment> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</payment> | ||
<delivery> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</delivery> | ||
<stocklevel> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</stocklevel> | ||
<orderstatus> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</orderstatus> | ||
<neworder> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</neworder> | ||
<payment> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</payment> | ||
<delivery> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</delivery> | ||
<stocklevel> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</stocklevel> | ||
<orderstatus> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</orderstatus> | ||
</sprocs> | ||
</connpool> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,53 @@ | ||
<connpool> | ||
<connections> | ||
<c1> | ||
<mysql_host>host1</mysql_host> | ||
<mysql_host>host1</mysql_host> | ||
<mysql_port>3306</mysql_port> | ||
<mysql_socket>/tmp/mysql.sock</mysql_socket> | ||
<mysql_user>root</mysql_user> | ||
<mysql_ssl_options>-ssl false</mysql_ssl_options> | ||
<mysql_user>root</mysql_user> | ||
<mysql_pass>mysql</mysql_pass> | ||
<mysql_dbase>tpcc</mysql_dbase> | ||
</c1> | ||
<c2> | ||
<mysql_host>host2</mysql_host> | ||
<mysql_host>host2</mysql_host> | ||
<mysql_port>3306</mysql_port> | ||
<mysql_socket>/tmp/mysql.sock</mysql_socket> | ||
<mysql_user>root</mysql_user> | ||
<mysql_ssl_options>-ssl false</mysql_ssl_options> | ||
<mysql_user>root</mysql_user> | ||
<mysql_pass>mysql</mysql_pass> | ||
<mysql_dbase>tpcc</mysql_dbase> | ||
</c2> | ||
<c3> | ||
<mysql_host>host3</mysql_host> | ||
<mysql_host>host3</mysql_host> | ||
<mysql_port>3306</mysql_port> | ||
<mysql_socket>/tmp/mysql.sock</mysql_socket> | ||
<mysql_user>root</mysql_user> | ||
<mysql_ssl_options>-ssl false</mysql_ssl_options> | ||
<mysql_user>root</mysql_user> | ||
<mysql_pass>mysql</mysql_pass> | ||
<mysql_dbase>tpcc</mysql_dbase> | ||
</c3> | ||
</connections> | ||
<sprocs> | ||
<neworder> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</neworder> | ||
<payment> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</payment> | ||
<delivery> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</delivery> | ||
<stocklevel> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</stocklevel> | ||
<orderstatus> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</orderstatus> | ||
<neworder> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</neworder> | ||
<payment> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</payment> | ||
<delivery> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</delivery> | ||
<stocklevel> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</stocklevel> | ||
<orderstatus> | ||
<connections>c1 c2 c3</connections> | ||
<policy>round_robin</policy> | ||
</orderstatus> | ||
</sprocs> | ||
</connpool> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.