diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-03-24 18:48:40 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-03-24 18:48:40 +0400 |
commit | ab96710bb7c236a74ad912c791173f48d3832c5c (patch) | |
tree | b9b3c85ec9a3d487bac51907d29a9f19fd95c16d /storage/perfschema | |
parent | af22a70df98a79804e8fa34d8f0af58deee162a3 (diff) | |
parent | 48c59f394bb9bd4dfd34be19ff4cf933557eb017 (diff) | |
download | mariadb-git-ab96710bb7c236a74ad912c791173f48d3832c5c.tar.gz |
Merge remote-tracking branch 'origin/bb-10.2-ext' into 10.3
Diffstat (limited to 'storage/perfschema')
-rw-r--r-- | storage/perfschema/pfs_autosize.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/perfschema/pfs_autosize.cc b/storage/perfschema/pfs_autosize.cc index 9bf70ceb216..6f267cb4599 100644 --- a/storage/perfschema/pfs_autosize.cc +++ b/storage/perfschema/pfs_autosize.cc @@ -132,7 +132,7 @@ PFS_sizing_data small_data= /* Min tables */ 200, /* Load factors */ - 0.90, 0.90, 0.90 + 0.90f, 0.90f, 0.90f }; PFS_sizing_data medium_data= @@ -148,7 +148,7 @@ PFS_sizing_data medium_data= /* Min tables */ 500, /* Load factors */ - 0.70, 0.80, 0.90 + 0.70f, 0.80f, 0.90f }; PFS_sizing_data large_data= @@ -164,7 +164,7 @@ PFS_sizing_data large_data= /* Min tables */ 10000, /* Load factors */ - 0.50, 0.65, 0.80 + 0.50f, 0.65f, 0.80f }; static inline ulong apply_load_factor(ulong raw_value, float factor) |