ClickHouse/src/Coordination/pathUtils.h

14 lines
158 B
C++
Raw Normal View History

#pragma once
#include <string>
#include <base/StringRef.h>
namespace DB
{
2022-01-19 11:46:29 +00:00
StringRef parentPath(StringRef path);
2022-01-19 11:46:29 +00:00
StringRef getBaseName(StringRef path);
}