Merge branch 'PHP-7.0' into PHP-7.1

* PHP-7.0:
  Skip test for early TDS versions
This commit is contained in:
Adam Baratz 2016-09-14 11:07:26 -04:00
commit 2f99f702b7

View file

@ -4,6 +4,7 @@ PDO_DBLIB: Uniqueidentifier column data type stringifying
<?php
if (!extension_loaded('pdo_dblib')) die('skip not loaded');
require __DIR__ . '/config.inc';
if (in_array(get_tds_version(), ['4.2', '4.6'])) die('skip feature unsupported by this TDS version');
?>
--FILE--
<?php