We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17e25a commit 5e2d8d9Copy full SHA for 5e2d8d9
test/EFCore.SqlServer.FunctionalTests/TestUtilities/TestEnvironment.cs
@@ -515,7 +515,7 @@ private static int GetCompatibilityLevel()
515
sqlConnection.Open();
516
517
using var command = new SqlCommand(
518
- "SELECT compatibility_level FROM sys.databases WHERE[name] = 'master';", sqlConnection);
+ "SELECT compatibility_level FROM sys.databases WHERE [name] = 'master';", sqlConnection);
519
_compatibilityLevel = (byte)command.ExecuteScalar();
520
521
return _compatibilityLevel.Value;
0 commit comments