- Notifications
You must be signed in to change notification settings - Fork311
Merge | Add IDBColumnSchemaGenerator interface to netfx SqlDataReader#2967
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merge | Add IDBColumnSchemaGenerator interface to netfx SqlDataReader#2967
Uh oh!
There was an error while loading.Please reload this page.
Conversation
/azp run |
Commenter does not have sufficient privileges for PR 2967 in repo dotnet/SqlClient |
@edwardneal Would you mind running the pipeline for me on this one? :) |
…//github.com/MichelZ/SqlClient into merge-sqldatareader-IDbColumnSchemaGenerator
Thanks for this MichelZ. The changes look good to me; would you mind feeding the extra package reference through to thenuspec file and the .NET Frameworkreference csproj please? I don't have access to the pipelines, but hopefully the SqlClient team will be able to look at it in a few days. Something's definitely odd there - your PRs didn't run the CI builds, and my commit ran the CI build but encountered a lot more timeouts than normal in the tests. |
MichelZ commentedNov 3, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Will do. I'm not a contributor, that's probably why the pipelines don't run for me (yet) |
src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/TdsParserHelperClasses.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
/azp run |
Commenter does not have sufficient privileges for PR 2967 in repo dotnet/SqlClient |
Thanks for trying :) |
/azp run |
Commenter does not have sufficient privileges for PR 2967 in repo dotnet/SqlClient |
@ErikEJ@edwardneal@MichelZ We have changed security rules recently such that only contributors can kick off pipeline runs. This is due to the potential for contributors to run code in PRs that could be hazardous to our build agents or cause a DoS. |
/azp run |
Azure Pipelines successfully started running 2 pipeline(s). |
This package needs to be added to the sqlclientdriver nuget feed for this build to succeed: |
@MichelZ I might've mentioned it before but yep, we've got security on the internal nuget feed such that only contributors can pull upstream packages from the feed. I've gone ahead and added System.Data.Common 4.3.0 to the feed, so it should be good to go. |
/azp run |
Azure Pipelines successfully started running 2 pipeline(s). |
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.
I'd need to see@cheenamalhotra 's opinion regarding the System.Data.Common inclusion before I explicitly approve.
src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/TdsParserHelperClasses.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
283d72a
to7fc9351
CompareThere 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.
LGTM overall, please resolve conflicts when possible.
Done. I'd need another /azp run I guess :) |
/azp run |
Azure Pipelines successfully started running 2 pipeline(s). |
codecovbot commentedNov 22, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@## main #2967 +/- ##===========================================+ Coverage 72.76% 92.58% +19.81%=========================================== Files 283 6 -277 Lines 58968 310 -58658 ===========================================- Hits 42908 287 -42621+ Misses 16060 23 -16037
Flags with carried forward coverage won't be shown.Click here to find out more. ☔ View full report in Codecov by Sentry. |
src/Microsoft.Data.SqlClient/tests/ManualTests/SQL/UdtTest/SqlServerTypesTest.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
I'm currently unsure what causes this issue....
The method is clearly available |
src/Microsoft.Data.SqlClient/netfx/src/Microsoft/Data/SqlClient/SqlDataReader.csShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
02ecc5b
to7e73ae7
Compare@MichelZ could you please resolve conflicts? Thx. |
@cheenamalhotra Done! :) |
4117175
intodotnet:mainUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Bring IDBColumnSchemaGenerator to netfx for later code base merging
I made sure to enable the respective test for netfx
Part of#2965