Added support for T-SQL parse (#642)

* added support for t-sql parse

* added syntax parse to language service instead

* fixed misleading error

* code review comments
This commit is contained in:
Aditya Bist
2018-06-26 14:19:05 -07:00
committed by GitHub
parent 539d579a9b
commit 7c7395fce0
4 changed files with 76 additions and 5 deletions

View File

@@ -702,7 +702,7 @@ namespace Microsoft.SqlTools.ServiceLayer.Agent
{
if (string.IsNullOrWhiteSpace(stepInfo.JobName))
{
return new Tuple<bool, string>(false, "JobId cannot be null");
return new Tuple<bool, string>(false, "JobName cannot be null");
}
JobData jobData;