Skip to content

Commit 2e18d43

Browse files
committed
limit size of result set so unit test runs reliably
1 parent 50b4caf commit 2e18d43

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)