Commit 0b17133f authored by BlackjacketMack's avatar BlackjacketMack Committed by Nick Craver

Updated InListStringSplitCount comment to GTE.

The comment suggested that more than the number specified in InListStringSplitCount and it would start to use string_split.  However, it is greater-than-or-equal-to (GTE) the number specified by InListStringSplitCount.
parent 899c9feb
......@@ -90,7 +90,7 @@ public static void SetDefaults()
public static bool PadListExpansions { get; set; }
/// <summary>
/// If set (non-negative), when performing in-list expansions of integer types ("where id in @ids", etc), switch to a string_split based
/// operation if there are more than this many elements. Note that this feautre requires SQL Server 2016 / compatibility level 130 (or above).
/// operation if there are this many elements or more. Note that this feautre requires SQL Server 2016 / compatibility level 130 (or above).
/// </summary>
public static int InListStringSplitCount { get; set; } = -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment