File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
main/java/org/springframework/boot/jdbc
test/java/org/springframework/boot/jdbc Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2012-2016 the original author or authors.
2
+ * Copyright 2012-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -100,7 +100,7 @@ public enum DatabaseDriver {
100
100
/**
101
101
* SQL Server.
102
102
*/
103
- SQLSERVER ("SQL SERVER " , "com.microsoft.sqlserver.jdbc.SQLServerDriver" ,
103
+ SQLSERVER ("Microsoft SQL Server " , "com.microsoft.sqlserver.jdbc.SQLServerDriver" ,
104
104
"com.microsoft.sqlserver.jdbc.SQLServerXADataSource" , "SELECT 1" ),
105
105
106
106
/**
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2012-2016 the original author or authors.
2
+ * Copyright 2012-2017 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -84,7 +84,7 @@ public void databaseProductNameLookups() throws Exception {
84
84
.isEqualTo (DatabaseDriver .ORACLE );
85
85
assertThat (DatabaseDriver .fromProductName ("PostgreSQL" ))
86
86
.isEqualTo (DatabaseDriver .POSTGRESQL );
87
- assertThat (DatabaseDriver .fromProductName ("SQL SERVER " ))
87
+ assertThat (DatabaseDriver .fromProductName ("Microsoft SQL Server " ))
88
88
.isEqualTo (DatabaseDriver .SQLSERVER );
89
89
assertThat (DatabaseDriver .fromProductName ("DB2" )).isEqualTo (DatabaseDriver .DB2 );
90
90
assertThat (DatabaseDriver .fromProductName ("Firebird 2.5.WI" ))
You can’t perform that action at this time.
0 commit comments