mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-24 01:25:42 -05:00
Remove invalid SET option for SqlOnDemand (#1147)
This commit is contained in:
@@ -36,7 +36,6 @@ namespace Microsoft.Kusto.ServiceLayer.QueryExecution
|
||||
private static readonly string s_SetCursorCloseOnCommit = "SET CURSOR_CLOSE_ON_COMMIT {0}";
|
||||
private static readonly string s_SetImplicitTransaction = "SET IMPLICIT_TRANSACTIONS {0}";
|
||||
private static readonly string s_SetQuotedIdentifier = "SET QUOTED_IDENTIFIER {0}";
|
||||
private static readonly string s_SetNoExec = "SET NOEXEC {0}";
|
||||
private static readonly string s_SetStatisticsTime = "SET STATISTICS TIME {0}";
|
||||
private static readonly string s_SetStatisticsIO = "SET STATISTICS IO {0}";
|
||||
private static readonly string s_SetParseOnly = "SET PARSEONLY {0}";
|
||||
@@ -194,14 +193,6 @@ namespace Microsoft.Kusto.ServiceLayer.QueryExecution
|
||||
}
|
||||
}
|
||||
|
||||
public string SetNoExecString
|
||||
{
|
||||
get
|
||||
{
|
||||
return string.Format(System.Globalization.CultureInfo.InvariantCulture, s_SetNoExec, (this.settings.NoExec ? s_On : s_Off));
|
||||
}
|
||||
}
|
||||
|
||||
public string GetSetStatisticsTimeString(bool? on)
|
||||
{
|
||||
on = on ?? this.settings.StatisticsTime;
|
||||
|
||||
Reference in New Issue
Block a user