]> granicus.if.org Git - php/commitdiff
update NEWS and UPGRADING
authorAnatol Belski <ab@php.net>
Fri, 6 Jan 2017 17:39:47 +0000 (18:39 +0100)
committerAnatol Belski <ab@php.net>
Fri, 6 Jan 2017 17:39:47 +0000 (18:39 +0100)
NEWS
UPGRADING

diff --git a/NEWS b/NEWS
index caa9269cf074987adb564720925fb7ec935ca4f9..d563dcc17b9e6277ab2ce662a74254087231fbe2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,9 @@ PHP                                                                        NEWS
 - OpenSSL:
   . Fixed bug #71519 (add serial hex to return value array). (xrobau)
 
+- PDO_Firebird:
+  . Implemented FR #72583 (All data are fetched as strings). (Dorin Marcoci)
+
 - Phar:
   . Fixed bug #70417 (PharData::compress() doesn't close temp file). (cmb)
 
index 575cb8e2d4145f0f5038329b555fe77e802a6e4f..cc2bc14f0ee2f979814bb833928c970e371b9f26 100644 (file)
--- a/UPGRADING
+++ b/UPGRADING
@@ -339,6 +339,13 @@ PHP 7.1 UPGRADE NOTES
   . Attempting to read an invalid or write to a readonly property will throw
     an instance of Error instead of resulting in a fatal error.
 
+- PDO_Firebird
+  As of PHP 7.1.3, the fetched data for integer fields is aware of the Firebird
+  datatypes. Previously all integers was fetched as strings, starting with
+  aforementioned PHP version intger fields are translated to the PHP integer
+  datatype. The 64-bit integers are still fetched as strings in 32-bit PHP
+  builds.
+
 - Reflection:
   . Failure to retrieve a reflection object or retrieve an object property
     will now throw an instance of Error instead of resulting in a fatal error.