Allow empty query string text (#415)

* Allow empty query string text

* Remove test that is no longer valid

* Remove test that is no longer valid
This commit is contained in:
Karl Burtram
2017-07-15 10:14:32 -07:00
committed by GitHub
parent b20529cced
commit 18977a89dc
4 changed files with 2 additions and 38 deletions

View File

@@ -1050,7 +1050,7 @@ namespace Microsoft.SqlTools.ServiceLayer.BatchParser.ExecutionEngineCode
/// </remarks>
public void ParseScript(string script, IBatchEventsHandler batchEventsHandler)
{
Validate.IsNotNullOrEmptyString(nameof(script), script);
Validate.IsNotNull(nameof(script), script);
Validate.IsNotNull(nameof(batchEventsHandler), batchEventsHandler);