Skip to content

Commit 20add1e

Browse files
committed
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
2 parents 471540d + 2e18d43 commit 20add1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/pdo_dblib/tests/bug_69757.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ require __DIR__ . '/config.inc';
1111

1212
$sql = "
1313
exec dbo.sp_executesql N'
14-
SELECT * FROM sysobjects
15-
SELECT * FROM syscolumns
14+
SELECT TOP 1 * FROM sysobjects
15+
SELECT TOP 1 * FROM syscolumns
1616
'
1717
";
1818
$stmt = $db->query($sql);

0 commit comments

Comments
 (0)