File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed 
spring-boot-project/spring-boot/src 
main/java/org/springframework/boot/jdbc 
test/java/org/springframework/boot/jdbc Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ protected boolean matchProductName(String productName) {
140140
141141		@ Override 
142142		protected  Collection <String > getUrlPrefixes () {
143- 			return  Collections . singleton ("firebirdsql" );
143+ 			return  Arrays . asList ("firebirdsql"  ,  "firebird "
144144		}
145145
146146		@ Override 
Original file line number Diff line number Diff line change @@ -129,6 +129,8 @@ public void databaseJdbcUrlLookups() {
129129				.isEqualTo (DatabaseDriver .SQLSERVER );
130130		assertThat (DatabaseDriver .fromJdbcUrl ("jdbc:firebirdsql://localhost/sample" ))
131131				.isEqualTo (DatabaseDriver .FIREBIRD );
132+ 		assertThat (DatabaseDriver .fromJdbcUrl ("jdbc:firebird://localhost/sample" ))
133+ 				.isEqualTo (DatabaseDriver .FIREBIRD );
132134		assertThat (DatabaseDriver .fromJdbcUrl ("jdbc:db2://localhost:50000/sample " ))
133135				.isEqualTo (DatabaseDriver .DB2 );
134136		assertThat (DatabaseDriver .fromJdbcUrl ("jdbc:as400://localhost" ))
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments