summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-09-10 19:29:11 +0200
committerAnatol Belski <ab@php.net>2014-09-10 19:29:11 +0200
commitdff820cea3d51d3bfb925bd1a09cbb2ee741e2b3 (patch)
tree79fe9c80c81d610e010b6950edcbcf54b438143d
parent3b78a24ee987d8b99f9647b3695ee82dc5cbebe8 (diff)
downloadphp-git-dff820cea3d51d3bfb925bd1a09cbb2ee741e2b3.tar.gz
fix precision when fetching float through mysqlnd
fixes failing ext/mysqli/tests/010.phpt
-rw-r--r--ext/mysqlnd/mysqlnd_ps_codec.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_ps_codec.c b/ext/mysqlnd/mysqlnd_ps_codec.c
index fa4ed9da6f..d96091210b 100644
--- a/ext/mysqlnd/mysqlnd_ps_codec.c
+++ b/ext/mysqlnd/mysqlnd_ps_codec.c
@@ -200,17 +200,27 @@ ps_fetch_float(zval * zv, const MYSQLND_FIELD * const field, unsigned int pack_l
/* The following cast is guaranteed to do the right thing */
dval = (double) d32val;
}
+#elif defined(PHP_WIN32)
+ {
+ /* float datatype on Winows is already 4 byte but has a precision of 7 digits */
+ char num_buf[2048];
+ (void)_gcvt_s(num_buf, 2048, fval, field->decimals >= 31 ? 7 : field->decimals);
+ dval = zend_strtod(num_buf, NULL);
+ }
#else
{
char num_buf[2048]; /* Over allocated */
char *s;
+#ifndef FLT_DIG
+# define FLT_DIG 6
+#endif
/* Convert to string. Ignoring localization, etc.
* Following MySQL's rules. If precision is undefined (NOT_FIXED_DEC i.e. 31)
* or larger than 31, the value is limited to 6 (FLT_DIG).
*/
s = php_gcvt(fval,
- field->decimals >= 31 ? 6 : field->decimals,
+ field->decimals >= 31 ? FLT_DIG : field->decimals,
'.',
'e',
num_buf);