-
Notifications
You must be signed in to change notification settings - Fork 105
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
WiP. исправил FP в RefOveruse при использовании в запросе таблиц, которые являются ТЧ #1859
base: develop
Are you sure you want to change the base?
Conversation
добавил проверку на то, что источник данных является табличной частью
нужно проверить на сложных запросах, где псевдонимы таблиц могут повторяться (соединение с подзапросом, ВТ) |
|
||
return this.dataSourceCollection.stream() | ||
.filter(dataSource -> dataSource.getChild(0).getChildCount() > 2) | ||
.anyMatch(dataSource -> dataSource.getChild(1).getChild(1).getText().matches(penultimateChildTableName)); |
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.
@ovcharenko-di возможно, стоит рассмотреть возможность предварительной подготовки доп.коллекции из dataSourceCollection
чтобы для каждого имя реквизита не выполнять повторный и ненужный поиск
dataSourceCollection.stream()
.filter(dataSource -> dataSource.getChild(0).getChildCount() > 2)
.anyMatch((dataSource -> dataSource.getChild(1).getChild(1))
например, отдельный список нужных детей
var penultimateChildTable = ctx.getChild(0); | ||
var penultimateChildTableName = penultimateChildTable.getText(); | ||
|
||
return this.dataSourceCollection.stream() |
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 лишний
@ovcharenko-di а вообще без обращения к метаданным сложно отличить табличную часть от виртуальной таблицы например. можно заложить на скобки вирт.таблицы |
Хотя новый парсер умеет определять имена вирт.таблиц |
В девелоп залит новый парсер запросов. Прошу ребэйзнуть и проверить работоспособность |
/rebase |
Описание
добавил проверку на то, что источник данных является табличной частью
Связанные задачи
Closes #1800
Чеклист
Общие
gradlew precommit
)Для диагностик
Дополнительно
реализация сделана "в лоб", поэтому надо бы придумать еще тест-кейсов