mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Fix keeper data dumper build
This commit is contained in:
parent
49793553ed
commit
8d2750a92a
@ -37,9 +37,9 @@ void dumpMachine(std::shared_ptr<KeeperStateMachine> machine)
|
||||
for (const auto & child : value.children)
|
||||
{
|
||||
if (key == "/")
|
||||
keys.push(key + child);
|
||||
keys.push(key + child.toString());
|
||||
else
|
||||
keys.push(key + "/" + child);
|
||||
keys.push(key + "/" + child.toString());
|
||||
}
|
||||
}
|
||||
std::cout << std::flush;
|
||||
|
Loading…
Reference in New Issue
Block a user