-
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
Keep Issue fields after censorship #714
Conversation
Note This is an automated comment that will be appended during run. 🔴 linux-x86_64-relwithdebinfo: some tests FAILED for commit 4a9591e.
🔴 linux-x86_64-release-asan: some tests FAILED for commit 4a9591e.
|
@@ -50,7 +50,8 @@ class TIssueDatabaseRemover { | |||
|
|||
TIntrusivePtr<NYql::TIssue> Run(const NYql::TIssue& issue) { | |||
auto msg = RemoveDatabaseFromStr(issue.GetMessage(), DatabasePath); | |||
auto newIssue = MakeIntrusive<NYql::TIssue>(msg); | |||
auto newIssue = MakeIntrusive<NYql::TIssue>(issue.Position, issue.EndPosition, msg); |
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.
Could we add the test here. We can change this field at https://a.yandex-team.ru/arcadia/ydb/tests/tools/fq_runner/kikimr_runner.py?rev=13154375#L379 to BM_DROP_WITH_WARNING in any existing test and check that the we don't any have problems in this case
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.
Done
* Keep Issue fields after censorship * Tests
No description provided.