Merge pull request #777 from yuslepukhin/fix_win_build_uint

uint is a not a datatype on windows.
This commit is contained in:
Igor Canadi 2015-10-19 13:23:41 -07:00
commit 5c727de6a3

View File

@ -188,7 +188,7 @@ TEST_F(DBTablePropertiesTest, GetPropertiesOfTablesInRange) {
// create a bunch of ranges
std::vector<std::string> random_keys;
auto n = 2 * rnd.Uniform(50);
for (uint i = 0; i < n; ++i) {
for (uint32_t i = 0; i < n; ++i) {
random_keys.push_back(test::RandomKey(&rnd, 5));
}