-
Notifications
You must be signed in to change notification settings - Fork 261
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
Add SA executemany compiled cache support #376
base: master
Are you sure you want to change the base?
Add SA executemany compiled cache support #376
Conversation
Codecov Report
@@ Coverage Diff @@
## master #376 +/- ##
==========================================
+ Coverage 92.28% 92.32% +0.03%
==========================================
Files 9 9
Lines 1180 1186 +6
Branches 172 174 +2
==========================================
+ Hits 1089 1095 +6
Misses 64 64
Partials 27 27
Continue to review full report at Codecov.
|
Other than that list comprehension, it looks great 😄 |
Okay, so I dropped the extra checks. Turns out those were not actually needed plus they were a perf hit when adding larger amounts of rows. Also added a testcase for DELETE :) |
0807cbd
to
9183e27
Compare
This good to go now? |
@terrycain Yes, this is good to go. |
Add compiled_cache support for SAConnection.executemany. Add tests for INSERT and UPDATE cases.