mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-15 01:25:40 -05:00
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:
@@ -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);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user