Skip to content

Commit

Permalink
fix table attacher special column issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Oct 28, 2024
1 parent 91abb5d commit ac3a0ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ public void CloneTable(DiscoveredDatabase srcDatabaseInfo, DiscoveredDatabase de
drop = true;
}

//drop the data load run ID field and validFrom fields, we don't need them in STAGING or RAW, it will be hard coded in the MERGE migration with a fixed value anyway.
if (colName.Equals(SpecialFieldNames.DataLoadRunID) || colName.Equals(SpecialFieldNames.ValidFrom))
drop = true;
////drop the data load run ID field and validFrom fields, we don't need them in STAGING or RAW, it will be hard coded in the MERGE migration with a fixed value anyway.
//if (colName.Equals(SpecialFieldNames.DataLoadRunID) || colName.Equals(SpecialFieldNames.ValidFrom))
// drop = true;

var dilution = dilutionColumns.SingleOrDefault(c => c.GetRuntimeName().Equals(colName));

Expand Down
2 changes: 1 addition & 1 deletion SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

[assembly: AssemblyVersion("8.3.1")]
[assembly: AssemblyFileVersion("8.3.1")]
[assembly: AssemblyInformationalVersion("8.3.1")]
[assembly: AssemblyInformationalVersion("8.3.1-doug-load")]

0 comments on commit ac3a0ac

Please sign in to comment.