Commit aca965c3 authored by Marc Gravell's avatar Marc Gravell

fix case of generated SQL in string-split

parent 5f27a4bf
...@@ -2024,7 +2024,7 @@ private static bool TryStringSplit(ref IEnumerable list, int splitAt, string nam ...@@ -2024,7 +2024,7 @@ private static bool TryStringSplit(ref IEnumerable list, int splitAt, string nam
else else
{ {
varName = variableName; varName = variableName;
return $"(SELECT val from {variableName}_TSS)"; return $"(select val from {variableName}_TSS)";
} }
}, RegexOptions.IgnoreCase | RegexOptions.Multiline | RegexOptions.CultureInvariant); }, RegexOptions.IgnoreCase | RegexOptions.Multiline | RegexOptions.CultureInvariant);
if (varName == null) return false; // couldn't resolve the var! if (varName == null) return false; // couldn't resolve the var!
......
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