-
-
Notifications
You must be signed in to change notification settings - Fork 866
[IMP] bi_sql_editor manual field check performance #683
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
Conversation
|
Hi @legalsylvain, |
legalsylvain
left a comment
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 PR looks fantastic, let's merge it! |
|
Note : pre-commit test is red. you should fix something I guess. |
|
@legalsylvain your merge command was aborted due to failed check(s), which you can inspect on this commit of 14.0-ocabot-merge-pr-683-by-legalsylvain-bump-patch. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
|
@legalsylvain I think it's pre-commit issue as you can see from the error. My change is minor, shouldn't impact tests. |
|
Any idea on that issue @OCA/community-maintainers ? |
6138f56 to
cb48eaf
Compare
@legalsylvain as I'm not aware of this team (at least I can't see it), can you tag the specific person who could now about the pre-commit issue? Thanks. |
|
The addons repo template has been updated to fix this.
Rebase here when done. |
The `table_columns()` slows down modules loading significantly up to 2-3x. In most cases `model._name.startswith(self._model_prefix)` returns `False`, so better to check it first.
cb48eaf to
4a1209a
Compare
|
@legalsylvain we're green. |
|
Thanks ! @paulius-sladkevicius. Could you take a look and make a PR against the migration in V16, I'll merge your patch. |
Will do |
|
@legalsylvain here it goes legalsylvain#2 |
|
@legalsylvain when it is possible to merge it? |
|
/ocabot merge patch |
|
On my way to merge this fine PR! |
|
Congratulations, your PR was merged at a8a2ac5. Thanks a lot for contributing to OCA. ❤️ |
The
table_columns()slows down modules loading significantly up to 2-3x.In most cases
model._name.startswith(self._model_prefix)returnsFalse, so better to check it first.