Commit e40c7882 authored by Nick Craver's avatar Nick Craver

nits

parent de8c5fe4
...@@ -23,7 +23,7 @@ public sealed class FactLongRunningAttribute : FactAttribute ...@@ -23,7 +23,7 @@ public sealed class FactLongRunningAttribute : FactAttribute
public FactLongRunningAttribute() public FactLongRunningAttribute()
{ {
#if !LONG_RUNNING #if !LONG_RUNNING
Skip = $"Long running"; Skip = "Long running";
#endif #endif
} }
public string Url { get; private set; } public string Url { get; private set; }
......
...@@ -346,7 +346,7 @@ public void CheckComplexConcat() ...@@ -346,7 +346,7 @@ public void CheckComplexConcat()
// if true, slower query due to not being able to use indices, but will allow searching inside strings // if true, slower query due to not being able to use indices, but will allow searching inside strings
bool allow_start_wildcards = false; bool allow_start_wildcards = false;
string query = String.Format(formatted, allow_start_wildcards ? use_both : use_end_only); string query = string.Format(formatted, allow_start_wildcards ? use_both : use_end_only);
string term = "F"; // the term the user searched for string term = "F"; // the term the user searched for
connection.Execute(@"create table #users16726709 (first_name varchar(200), last_name varchar(200)) connection.Execute(@"create table #users16726709 (first_name varchar(200), last_name varchar(200))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment