-
Notifications
You must be signed in to change notification settings - Fork 458
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
Make AssociationHelper take DynamicColumns into consideration #4608
Conversation
I was able to use the NuGet artifacts from the CI pipeline to confirm that this does fix the issue I was experiencing :) |
/azp run test-all |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run test-all |
Azure Pipelines successfully started running 1 pipeline(s). |
Test baselines changed by this PR. Don't forget to merge/close baselines PR after this pr merged/closed. |
Alright, tests failing... I downloaded the I could not reproduce the As for |
Ignore those failures:
|
Yes, #4595 contains fixes for recent CI issues |
Nice, thanks for the quick response :) Are there any blockers for merging? |
Yes, we currently work on some preview.1 regressions I want to merge first. After that I will merge this one |
On the other side - I probably will see if I can merge this during weekend |
Sounds great, much appreciated :) |
Thanks! |
* [Windows / SQLite (both providers)] baselines * [Windows / SQLite (specialized tests)] baselines * [Windows / SQL CE] baselines * [Windows / Access MDB (Jet/ODBC)] baselines * [Windows / SQL Server 2005] baselines * [Windows / SQL Server 2019] baselines * [Windows / SQL Server 2017] baselines * [Linux / Firebird 2.5] baselines * [Windows / SQL Server 2016] baselines * [Windows / SQL Server 2014] baselines * [Windows / SQL Server EXTRAS] baselines * [Linux / Firebird 3.0] baselines * [Linux / DB2 LUW 11.5] baselines * [Windows / SQL Server 2008] baselines * [Windows / SQL Server 2012] baselines * [Linux / MariaDB 11] baselines * [Linux / Informix 14.10] baselines * [Linux / Firebird 5.0] baselines * [Linux / Firebird 4.0] baselines * [Linux / ClickHouse Client] baselines * [Linux / Oracle 11g XE] baselines * [Linux / MySQL 9 (both providers)] baselines * [Linux / MySQL 5.7 (both providers)] baselines * [Windows / SQL Server 2022] baselines * [Linux / PostgreSQL 12] baselines * [Linux / Oracle 12c] baselines * [Linux / PostgreSQL 14] baselines * [Linux / PostgreSQL 13] baselines * [Linux / Oracle 23c] baselines * [Linux / PostgreSQL 11] baselines * [Linux / PostgreSQL 15] baselines * [Linux / PostgreSQL 16] baselines * [Linux / Oracle 21c] baselines * [Linux / Oracle 19c] baselines * [Linux / ClickHouse Octonica] baselines * [Linux / Sybase ASE 16] baselines * [Linux / SQL Server 2019] baselines * [Linux / SAP HANA 2] baselines --------- Co-authored-by: Azure Pipelines Bot <[email protected]>
This PR refers to #4602 where I mentioned an issue when using a combination of a custom
IMetadataReader
andDynamicColumnsStore
to hold association keys. The issue being thatAssociationHelper
didn't take Dynamic Columns into account. I hope that this solves the issue.N.B: Since I'm running Ubuntu, I am unable to run the test to completion (even with Mono). However, with the use of Mono, I can run everything that doesn't talk directly to a database. Before the fix in
AssociationHelper.cs
the test fails with:And after the fix it fails with (on my machine):
This seems to confirm that the issue in #4602 is gone.
Any help confirming that everything else still works properly would be greatly appreciated! :)