Skip to content

Commit

Permalink
Fix bug with backslashed in db paths in benchmark workload in YDB on …
Browse files Browse the repository at this point in the history
…Windows
  • Loading branch information
iddqdex committed Jan 20, 2025
1 parent 6caf6c7 commit d0e5288
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ydb/apps/ydb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ydb/library/workload/benchmark_base/workload.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d0e5288

Please sign in to comment.