Merge branch 'PHP-5.6' into PHP-7.0

* PHP-5.6:
  Recognize TDS versions 7.3 and 7.4
This commit is contained in:
Stanislav Malyshev 2016-09-05 00:29:18 -07:00
commit b5f9427ca9

View file

@ -339,6 +339,12 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options)
#ifdef DBVERSION_72
,{"7.2",DBVERSION_72}
,{"8.0",DBVERSION_72}
#endif
#ifdef DBVERSION_73
,{"7.3",DBVERSION_73}
#endif
#ifdef DBVERSION_74
,{"7.4",DBVERSION_74}
#endif
,{"10.0",DBVERSION_100}
,{"auto",0} /* Only works with FreeTDS. Other drivers will bork */