Skip to content

Commit

Permalink
Update JoinInfo.cs
Browse files Browse the repository at this point in the history
Finally fix that "Joink" typo after all the others
  • Loading branch information
jas88 committed Feb 13, 2025
1 parent a9f6abb commit c0f1414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rdmp.Core/Curation/Data/JoinInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ public JoinInfo(ICatalogueRepository repository, ColumnInfo foreignKey, ColumnIn
ExtractionJoinType type, string collation)
{
if (foreignKey.ID == primaryKey.ID)
throw new ArgumentException("Joink Key 1 and Join Key 2 cannot be the same");
throw new ArgumentException("Join Key 1 and Join Key 2 cannot be the same");

if (foreignKey.TableInfo_ID == primaryKey.TableInfo_ID)
throw new ArgumentException("Joink Key 1 and Join Key 2 are from the same table, this is not cool");
throw new ArgumentException("Join Key 1 and Join Key 2 must be from different tables");

repository.InsertAndHydrate(this, new Dictionary<string, object>
{
Expand Down

0 comments on commit c0f1414

Please sign in to comment.