-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce batch push-down to database connections (#7)
* Fix asynchronous record iterator exhausted when scanning for new enumeration values * Introduce batch push-down to database connections * Eliminate duplicate code * Add guard to prevent re-using an already exhausted iterator
- Loading branch information
Showing
13 changed files
with
432 additions
and
365 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
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,7 +1,9 @@ | ||
set -e | ||
|
||
PYTHON=python3 | ||
|
||
# Run static type checker and verify formatting guidelines | ||
python3 -m mypy pysqlsync | ||
python3 -m flake8 pysqlsync | ||
python3 -m mypy tests | ||
python3 -m flake8 tests | ||
$PYTHON -m mypy pysqlsync | ||
$PYTHON -m flake8 pysqlsync | ||
$PYTHON -m mypy tests | ||
$PYTHON -m flake8 tests |
Oops, something went wrong.