mysql中的直方图采样逻辑
Posted 友哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中的直方图采样逻辑相关的知识,希望对你有一定的参考价值。
int handler::sample_next(uchar *buf) { // Temporary set inited to RND, since we are calling rnd_next(). int res = rnd_next(buf); std::uniform_real_distribution<double> rnd(0.0, 1.0); while (!res && rnd(m_random_number_engine) > (m_sampling_percentage / 100.0)) res = rnd_next(buf); return res; }
以上是关于mysql中的直方图采样逻辑的主要内容,如果未能解决你的问题,请参考以下文章