]> granicus.if.org Git - php/commitdiff
Recognize TDS versions 7.3 and 7.4
authorLior Kaplan <kaplan@linnovate.net>
Sun, 7 Aug 2016 12:15:32 +0000 (15:15 +0300)
committerLior Kaplan <kaplan@linnovate.net>
Sun, 7 Aug 2016 12:15:59 +0000 (15:15 +0300)
ext/pdo_dblib/dblib_driver.c

index 70b440298213260348b12d21f09cf99838f7a916..b5744a424358eb1bcef2f9af4d1143f4ec66be08 100644 (file)
@@ -280,6 +280,12 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
 #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 */