mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 23:21:59 +00:00
dbms: restore leading slash in pathFull. [#METR-13679]
This commit is contained in:
parent
ef3c9190e7
commit
b957a2a9c3
@ -280,7 +280,7 @@ struct ExtractPathFull
|
||||
if (nullptr != (pos = strchr(data, '/')) && pos[1] == '/' && nullptr != (pos = strchr(pos + 2, '/')))
|
||||
{
|
||||
/// no leading slash
|
||||
res_data = pos + 1;
|
||||
res_data = pos;
|
||||
res_size = end - res_data;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user