diff --git a/ydb/apps/ydb/CHANGELOG.md b/ydb/apps/ydb/CHANGELOG.md index 5f41af6f4154..ec1d9fb6c167 100644 --- a/ydb/apps/ydb/CHANGELOG.md +++ b/ydb/apps/ydb/CHANGELOG.md @@ -1,3 +1,4 @@ +* Fixed bug with backslashed in db paths in benchmark workload in YDB on Windows * Added CREATE TABLE text suggestion on scheme error during `ydb import file csv` * Backup and restore of changefeeds has been added to `ydb tools dump` and `ydb tools restore`. As a result, there are changes in the backup file structure: for tables with changefeeds, a subdirectory is created for each changefeed, named after the changefeed. This subdirectory contains two files: `changefeed_description.pb`, which contains the changefeed description, and `topic_description.pb`, which contains information about the underlying topic. * Added `--skip-checksum-validation` option to `ydb import s3` command to skip server-side checksum validation. diff --git a/ydb/library/workload/benchmark_base/workload.cpp b/ydb/library/workload/benchmark_base/workload.cpp index cd5cb0b9e8a1..aac8a6342408 100644 --- a/ydb/library/workload/benchmark_base/workload.cpp +++ b/ydb/library/workload/benchmark_base/workload.cpp @@ -185,7 +185,7 @@ void TWorkloadBaseParams::ConfigureOpts(NLastGetopt::TOpts& opts, const ECommand } TString TWorkloadBaseParams::GetFullTableName(const char* table) const { - return TFsPath(DbPath) / Path / table; + return DbPath + "/" + Path + "/" + table; } TWorkloadGeneratorBase::TWorkloadGeneratorBase(const TWorkloadBaseParams& params)