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
/// <param name="outputColumnName">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
25
-
/// <param name="inputColumnName">Name of the column to transform. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param> /// <param name="hashBits">Number of bits to hash into. Must be between 1 and 31, inclusive.</param>
25
+
/// <param name="inputColumnName">Name of the column to transform. If set to <see langword="null"/>, the value of the <paramref name="outputColumnName"/> will be used as source.</param>
26
+
/// <param name="hashBits">Number of bits to hash into. Must be between 1 and 31, inclusive.</param>
26
27
/// <param name="invertHash">During hashing we constuct mappings between original values and the produced hash values.
27
28
/// Text representation of original values are stored in the slot names of the metadata for the new column.Hashing, as such, can map many initial values to one.
28
29
/// <paramref name="invertHash"/> specifies the upper bound of the number of distinct input values mapping to a hash that should be retained.
/// Name of the column resulting from the transformation of <see cref="InputColumnName"/>.
531
+
/// </summary>
527
532
publicreadonlystringName;
533
+
/// <summary>
534
+
/// Name of column to transform. If set to <see langword="null"/>, the value of the <see cref="Name"/> will be used as source.
535
+
/// </summary>
528
536
publicreadonlystringInputColumnName;
537
+
/// <summary>
538
+
/// The expected kind of the converted column.
539
+
/// </summary>
529
540
publicreadonlyDataKindOutputKind;
541
+
/// <summary>
542
+
/// New key count, if we work with key type.
543
+
/// </summary>
530
544
publicreadonlyKeyCountOutputKeyCount;
531
545
532
546
/// <summary>
@@ -535,14 +549,30 @@ public sealed class ColumnInfo
535
549
/// <param name="name">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
536
550
/// <param name="outputKind">The expected kind of the converted column.</param>
537
551
/// <param name="inputColumnName">Name of column to transform. If set to <see langword="null"/>, the value of the <paramref name="name"/> will be used as source.</param>
538
-
/// <param name="outputKeyCount">New key range, if we work with key type.</param>
552
+
/// <param name="outputKeyCount">New key count, if we work with key type.</param>
/// Describes how the transformer handles one column pair.
563
+
/// </summary>
564
+
/// <param name="name">Name of the column resulting from the transformation of <paramref name="inputColumnName"/>.</param>
565
+
/// <param name="type">The expected kind of the converted column.</param>
566
+
/// <param name="inputColumnName">Name of column to transform. If set to <see langword="null"/>, the value of the <paramref name="name"/> will be used as source.</param>
567
+
/// <param name="outputKeyCount">New key count, if we work with key type.</param>
0 commit comments