Skip to content

Commit

Permalink
Move new params to the end to avoid backwards incompatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
amochin committed Dec 19, 2023
1 parent f8ee5c1 commit 17a70a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/DatabaseLibrary/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def delete_all_rows_from_table(self, tableName: str, sansTran: bool = False, ali
db_connection.client.rollback()

def execute_sql_script(
self, sqlScriptFileName: str, sansTran: bool = False, split: bool = True, alias: Optional[str] = None
self, sqlScriptFileName: str, sansTran: bool = False, alias: Optional[str] = None, split: bool = True
):
"""
Executes the content of the `sqlScriptFileName` as SQL commands. Useful for setting the database to a known
Expand Down Expand Up @@ -363,9 +363,9 @@ def execute_sql_string(
self,
sqlString: str,
sansTran: bool = False,
omitTrailingSemicolon: Optional[bool] = None,
alias: Optional[str] = None,
parameters: Optional[List] = None,
omitTrailingSemicolon: Optional[bool] = None,
):
"""
Executes the ``sqlString`` as a single SQL command.
Expand Down
2 changes: 1 addition & 1 deletion src/DatabaseLibrary/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "1.4.2"
VERSION = "1.4.3"

0 comments on commit 17a70a9

Please sign in to comment.