Skip to content

Commit cee363d

Browse files
committed
Merge branch 'pull-request/2061' into PHP-5.6
* pull-request/2061: Recognize TDS versions 7.3 and 7.4
2 parents 84d4950 + 283ee1f commit cee363d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ext/pdo_dblib/dblib_driver.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,12 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
280280
#ifdef DBVERSION_72
281281
,{"7.2",DBVERSION_72}
282282
,{"8.0",DBVERSION_72}
283+
#endif
284+
#ifdef DBVERSION_73
285+
,{"7.3",DBVERSION_73}
286+
#endif
287+
#ifdef DBVERSION_74
288+
,{"7.4",DBVERSION_74}
283289
#endif
284290
,{"10.0",DBVERSION_100}
285291
,{"auto",0} /* Only works with FreeTDS. Other drivers will bork */

0 commit comments

Comments
 (0)