-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to set expand Cursor #374
Conversation
59e9006
to
b9684b0
Compare
Codecov Report
@@ Coverage Diff @@
## master #374 +/- ##
==========================================
+ Coverage 92.28% 92.28% +<.01%
==========================================
Files 9 9
Lines 1179 1180 +1
Branches 172 172
==========================================
+ Hits 1088 1089 +1
Misses 64 64
Partials 27 27
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than that, looks ok to me, doesn't look like it'll break any compatibility.
aiomysql/sa/engine.py
Outdated
""" | ||
deplecated_cursor_classes = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't deplecated be deprecated?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it's a mistake
aiomysql/sa/engine.py
Outdated
@@ -26,16 +27,23 @@ def create_engine(minsize=1, maxsize=10, loop=None, | |||
|
|||
Returns Engine instance with embedded connection pool. | |||
|
|||
The pool has *minsize* opened connections to PostgreSQL server. | |||
The pool has *minsize* opened connections to mysql server. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MySQL not mysql, might as well include the capitals
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
3783562
to
313d221
Compare
Cool, looks good thanks |
Fixes #373