summaryrefslogtreecommitdiff
path: root/UPGRADING
diff options
context:
space:
mode:
authorVictor Csiky <strongholdmedia@users.noreply.github.com>2018-05-30 07:49:56 +0200
committerAnatol Belski <ab@php.net>2018-06-15 07:23:31 +0200
commit71c04324b7161f9ed151e9550a1a6764c5d170f7 (patch)
tree8d549d7daa82d1c573063cdbbb80a5acc3b87ea8 /UPGRADING
parent0b04938c87fae4b490ce4f4313c233c3588b790d (diff)
downloadphp-git-71c04324b7161f9ed151e9550a1a6764c5d170f7.tar.gz
Fixe bug #76386
..that is also a duplicate of #67122
Diffstat (limited to 'UPGRADING')
-rw-r--r--UPGRADING23
1 files changed, 20 insertions, 3 deletions
diff --git a/UPGRADING b/UPGRADING
index 9903e86621..6f1657dbf3 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -20,8 +20,8 @@ PHP 7.3 UPGRADE NOTES
========================================
Core:
- . The ext_skel utility has been completely redesigned with new options and
- some old options removed. This is now written in PHP and has no external
+ . The ext_skel utility has been completely redesigned with new options and
+ some old options removed. This is now written in PHP and has no external
dependencies.
. Support for BeOS has been dropped.
. Exceptions thrown due to automatic conversion of warnings into exceptions
@@ -51,6 +51,23 @@ BCMath:
. bcmul() and bcpow() now return numbers with the requested scale. Formerly,
the returned numbers may have omitted trailing decimal zeroes.
+mysqli:
+ . Prepared statements now properly report the fractional seconds for DATETIME/
+ TIME/TIMESTAMP columns with decimals specifier (e.g. TIMESTAMP(6) when using
+ microseconds). Formerly, the fractional seconds part was simply omitted from
+ the returned values.
+
+PDO/MySQL:
+ . Prepared statements now properly report the fractional seconds for DATETIME/
+ TIME/TIMESTAMP columns with decimals specifier (e.g. TIMESTAMP(6) when using
+ microseconds). Formerly, the fractional seconds part was simply omitted from
+ the returned values.
+ Please note that this only affects the usage of PDO_MYSQL with emulated
+ prepares turned off (e.g. using the native preparation functionality).
+ Statements using connections having PDO::ATTR_EMULATE_PREPARES=true (which
+ is the default) were not affected by the bug fixed and have already been
+ getting the proper fractional seconds values from the engine.
+
Reflection:
. Reflection export to string now uses `int` and `bool` instead of `integer`
and `boolean`.
@@ -260,7 +277,7 @@ JSON:
MBString:
. The configuration option --with-libmbfl is no longer available.
- ODBC:
+ ODBC:
. Support for ODBCRouter has been removed.
. Support for Birdstep has been removed.