You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// After _input and _sources are set, pick up selected columns from _input to create output schema.
82
-
/// Note that _sources tells us what columns in _input are selected.
72
+
/// After <see cref="_sourceSchema"/> and <see cref="_sources"/> are set, pick up selected columns from <see cref="_sourceSchema"/> to create <see cref="OutputSchema"/>
73
+
/// Note that <see cref="_sources"/> tells us what columns in <see cref="_sourceSchema"/> are put into <see cref="OutputSchema"/>.
83
74
/// </summary>
84
75
privateSchemaComputeOutputSchema()
85
76
{
86
77
varschemaBuilder=newSchemaBuilder();
87
78
for(inti=0;i<_sources.Length;++i)
88
79
{
89
-
// selectedIndex is an column index of input schema. Note that the input column indexed by _sources[i] in _input is sent
80
+
// selectedIndex is an column index of input schema. Note that the input column indexed by _sources[i] in _sourceSchema is sent
0 commit comments