-
Notifications
You must be signed in to change notification settings - Fork 606
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restore async replication #14465
base: main
Are you sure you want to change the base?
Restore async replication #14465
Conversation
⚪ |
⚪ |
3d5338c
⚪ Test history | Ya make output | Test bloat
⚪ Test history | Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪ Test history | Ya make output | Test bloat
⚪ Test history | Ya make output | Test bloat | Test bloat
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
if (!RewriteCreateViewQuery(query, dbRestoreRoot, isDb, dbPath, createViewFile.GetPath().Quote(), issues)) { | ||
return Result<TRestoreResult>(dbPath, EStatus::BAD_REQUEST, issues.ToString()); | ||
if (!RewriteCreateViewQuery(query, dbRestoreRoot, isDb, dbPath, issues)) { | ||
return Result<TRestoreResult>(fsPath.GetPath(), EStatus::BAD_REQUEST, issues.ToString()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This result with an error should be built using the dbPath
, see for example RestoreTable
result built here and every other (⭐) result with an error using a path to be built in this file.
(⭐) Except the RestoreChangefeeds function. I believe, it is also an error to use fsPath
for the resulting error there.
Changelog entry
...
Changelog category
Additional information
...