ClickHouse/src/Coordination/pathUtils.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
166 B
C++
Raw Normal View History

#pragma once
#include <string>
#include <base/StringRef.h>
namespace DB
{
2023-05-17 13:32:51 +00:00
StringRef parentNodePath(StringRef path);
2023-05-17 13:32:51 +00:00
StringRef getBaseNodeName(StringRef path);
}