diff options
author | Adam Baratz <adambaratz@php.net> | 2016-09-21 16:23:58 -0400 |
---|---|---|
committer | Adam Baratz <adambaratz@php.net> | 2016-09-21 16:23:58 -0400 |
commit | e14636f4bd1c8f4202886780f1bfed2a07d224a6 (patch) | |
tree | 47d8614a92b1704756fcb29e68852765e8db81aa /ext/pdo_dblib | |
parent | 5ab064caedbbc898143cee7d9c10f08241eb158a (diff) | |
parent | d334d319f0e86eb9c0fe35b7b9922637f4fbfe6a (diff) | |
download | php-git-e14636f4bd1c8f4202886780f1bfed2a07d224a6.tar.gz |
Merge branch 'PHP-7.0' into PHP-7.1
* PHP-7.0:
Limit size of result set for test query
Diffstat (limited to 'ext/pdo_dblib')
-rw-r--r-- | ext/pdo_dblib/tests/bug_45876.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_dblib/tests/bug_45876.phpt b/ext/pdo_dblib/tests/bug_45876.phpt index 9de13ff3fb..2e99e2b94f 100644 --- a/ext/pdo_dblib/tests/bug_45876.phpt +++ b/ext/pdo_dblib/tests/bug_45876.phpt @@ -9,7 +9,7 @@ require dirname(__FILE__) . '/config.inc'; <?php require dirname(__FILE__) . '/config.inc'; -$stmt = $db->prepare("select ic1.* from information_schema.columns ic1"); +$stmt = $db->prepare("select top 1 ic1.* from information_schema.columns ic1"); $stmt->execute(); var_dump($stmt->getColumnMeta(0)); $stmt = null; |