diff options
author | Adam Baratz <adam.baratz@gmail.com> | 2016-06-15 17:42:34 -0400 |
---|---|---|
committer | Julien Pauli <jpauli@php.net> | 2016-07-08 15:54:52 +0200 |
commit | 8db64e919c7c261a429ad33254b600601935b2ac (patch) | |
tree | 7a64485de1c0f2459714de61fd35bc6c3844ed14 /ext/pdo_dblib | |
parent | a8df121e18807d90fea2c0c4cdd1e17eed0f445a (diff) | |
download | php-git-8db64e919c7c261a429ad33254b600601935b2ac.tar.gz |
Correct for connection with PDO::ATTR_STRINGIFY_FETCHES set to false
Diffstat (limited to 'ext/pdo_dblib')
-rw-r--r-- | ext/pdo_dblib/tests/bug_71667.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/pdo_dblib/tests/bug_71667.phpt b/ext/pdo_dblib/tests/bug_71667.phpt index 1c5005fd6a..3721f01954 100644 --- a/ext/pdo_dblib/tests/bug_71667.phpt +++ b/ext/pdo_dblib/tests/bug_71667.phpt @@ -19,16 +19,16 @@ array(1) { [0]=> array(6) { ["computed"]=> - string(1) "1" + int(1) [0]=> - string(1) "1" + int(1) ["named"]=> - string(1) "2" + int(2) [1]=> - string(1) "2" + int(2) ["computed1"]=> - string(1) "3" + int(3) [2]=> - string(1) "3" + int(3) } } |