-
Notifications
You must be signed in to change notification settings - Fork 373
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
Skipif fix #821
Skipif fix #821
Conversation
…o dev Merging upstream/dev to origin
} else { | ||
if ($msodbcsql_maj < 17) { | ||
die("skip Unsupported ODBC driver version"); | ||
} |
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.
Suggestion: change this to
if (!$is_win) {
if ($msodbcsql_maj < 17) {
die("skip Unsupported ODBC driver version");
} else {
// $msodbcsql_maj >= 17
if ($msodbcsql_maj == 17 && $msodbcsql_min < 2 ) {
die...
}
}
}
Codecov Report
@@ Coverage Diff @@
## dev #821 +/- ##
==========================================
- Coverage 80.06% 80.05% -0.02%
==========================================
Files 25 25
Lines 7325 7321 -4
==========================================
- Hits 5865 5861 -4
Misses 1460 1460
Continue to review full report at Codecov.
|
} | ||
} | ||
} else { | ||
if ($msodbcsql_maj < 17) { | ||
die("skip Unsupported ODBC driver version"); |
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.
Why is the else clause still necessary?
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.
Upon the passing of the tests
This change is