summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2016-03-02 14:26:34 +0800
committerXinchen Hui <laruence@gmail.com>2016-03-02 14:26:34 +0800
commit20add1e530e7235f73acb8af7e0344e97e63053f (patch)
treedd7f5de558a403f5aeca08839002e575301e7111
parent471540d2853b3077af5dfbbbf2146edc6228a0cb (diff)
parent2e18d438b0742a9f29c676aa07359473f6683291 (diff)
downloadphp-git-20add1e530e7235f73acb8af7e0344e97e63053f.tar.gz
Merge branch 'PHP-5.6-bug_69757' of https://github.com/wayfair/php-src into PHP-5.6
* 'PHP-5.6-bug_69757' of https://github.com/wayfair/php-src: limit size of result set so unit test runs reliably
-rw-r--r--ext/pdo_dblib/tests/bug_69757.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_dblib/tests/bug_69757.phpt b/ext/pdo_dblib/tests/bug_69757.phpt
index 6c4aee0b6d..611f41bec1 100644
--- a/ext/pdo_dblib/tests/bug_69757.phpt
+++ b/ext/pdo_dblib/tests/bug_69757.phpt
@@ -11,8 +11,8 @@ require __DIR__ . '/config.inc';
$sql = "
exec dbo.sp_executesql N'
- SELECT * FROM sysobjects
- SELECT * FROM syscolumns
+ SELECT TOP 1 * FROM sysobjects
+ SELECT TOP 1 * FROM syscolumns
'
";
$stmt = $db->query($sql);