File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
tests/Foundatio.Parsers.SqlQueries.Tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -500,25 +500,25 @@ public async Task<SampleContext> GetSampleContextWithDataAsync(IServiceProvider
500500 } ) ;
501501 await db . SaveChangesAsync ( ) ;
502502
503- var result = await db . Database . ExecuteSqlRawAsync (
503+ await db . Database . ExecuteSqlRawAsync (
504504 @"IF FULLTEXTSERVICEPROPERTY('IsFullTextInstalled') != 1
505505 BEGIN
506506 RAISERROR('Full-Text Search is not installed', 16, 1);
507507 END" ) ;
508508
509- result = await db . Database . ExecuteSqlRawAsync (
509+ await db . Database . ExecuteSqlRawAsync (
510510 @"IF NOT EXISTS (SELECT * FROM sys.fulltext_catalogs WHERE name = 'ftCatalog')
511511 BEGIN
512512 CREATE FULLTEXT CATALOG ftCatalog AS DEFAULT;
513513 END" ) ;
514514
515- result = await db . Database . ExecuteSqlRawAsync (
515+ await db . Database . ExecuteSqlRawAsync (
516516 @"IF EXISTS (SELECT * FROM sys.fulltext_indexes WHERE object_id = OBJECT_ID('Employees'))
517517 BEGIN
518518 DROP FULLTEXT INDEX ON Employees;
519519 END" ) ;
520520
521- result = await db . Database . ExecuteSqlRawAsync (
521+ await db . Database . ExecuteSqlRawAsync (
522522 @"CREATE FULLTEXT INDEX ON Employees
523523 (
524524 FullName LANGUAGE 1033
You can’t perform that action at this time.
0 commit comments