Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion HICPlugin/DataFlowComponents/CHIColumnFinder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener
return toProcess;
}


List<string> columnGreenList = new();
if (_allowLists.TryGetValue(RdmpAll, out var _extractionSpecificAllowances))
columnGreenList.AddRange(_extractionSpecificAllowances);
if (_allowLists.TryGetValue(toProcess.TableName, out var _catalogueSpecificAllowances))
columnGreenList.AddRange(_catalogueSpecificAllowances.ToList());

var count = 0;
string fileLocation = null;
if (_outputFileDirectory?.Exists == true)
Expand Down Expand Up @@ -468,6 +468,7 @@ public void PreInitialize(IExtractCommand value, IDataLoadEventListener listener
public void PreInitialize(IBasicActivateItems activator, IExtractCommand value, IDataLoadEventListener listener)
{
_activator = activator;
PreInitialize(value, listener);
}

public void PreInitialize(IBasicActivateItems activator, IBasicActivateItems value, IDataLoadEventListener listener)
Expand Down
Loading