Skip to content

Commit

Permalink
Change to string.empty
Browse files Browse the repository at this point in the history
  • Loading branch information
gilsonjoanelo committed Sep 26, 2024
1 parent b2c7eb9 commit 4dd2e5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public FbSqlGenerationHelper(RelationalSqlGenerationHelperDependencies dependenc
public virtual string StringLiteralQueryType(string s, bool isUnicode = true)
{
var length = MinimumStringQueryTypeLength(s);
var charset = isUnicode ? " CHARACTER SET UTF8" : "";
var charset = isUnicode ? " CHARACTER SET UTF8" : string.Empty;
return $"VARCHAR({length}){charset}";
}

Expand Down

0 comments on commit 4dd2e5a

Please sign in to comment.