Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0045922 | Openbravo ERP | A. Platform | public | 2021-02-18 18:04 | 2022-02-01 08:07 |
|
Reporter | ALopetegui | |
Assigned To | Triage Platform Base | |
Priority | normal | Severity | major | Reproducibility | have not tried |
Status | acknowledged | Resolution | open | |
Platform | | OS | 5 | OS Version | |
Product Version | PR20Q3.1 | |
Target Version | | Fixed in Version | | |
Merge Request Status | |
Review Assigned To | |
OBNetwork customer | |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0045922: Extra self-join with main table when using computed columns |
Description | Adding new hql properties with computed columns, there is an extra join with the main table instead of using the existing one. |
Steps To Reproduce | Add a new hql property to master product for example, the query of search product will add an extra join with m_product to use the computed column. |
Proposed Solution | It seems a bug or design defect of hibernate , the way hql makes the query with computed columns. |
Additional Information | |
Tags | NOR, Performance |
Relationships | related to | defect | 0045919 | | closed | rqueralta | Retail Modules | Extra join of product table in master.product | related to | defect | 0044911 | | closed | ranjith_qualiantech_com | Retail Modules | Incremental refresh of Product cannot use index on updated | related to | defect | 0045055 | | closed | ranjith_qualiantech_com | Retail Modules | Incremental refresh of ProductCharacteristic cannot use index on updated | related to | defect | 0045144 | | closed | prakashmurugesan88 | Retail Modules | Fix incremental and full refresh with Multi Tax Category module | related to | defect | 0045467 | | closed | prakashmurugesan88 | Retail Modules | Performance issues on the model CharacteristicValue | related to | feature request | 0045056 | | new | Retail | Retail Modules | Faster insertion of big amounts of data in full refresh in indexedDB | depends on | feature request | 0045969 | | new | Triage Platform Base | Openbravo ERP | upgrade to Hibernate 6.x (prototype) | Not all the children of this issue are yet resolved or closed. |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2021-02-18 18:04 | ALopetegui | New Issue | |
2021-02-18 18:04 | ALopetegui | Assigned To | => platform |
2021-02-18 18:04 | ALopetegui | Modules | => Core |
2021-02-18 18:04 | ALopetegui | Resolution time | => 1617400800 |
2021-02-18 18:04 | ALopetegui | Triggers an Emergency Pack | => No |
2021-02-18 18:05 | ALopetegui | Tag Attached: Performance | |
2021-02-18 18:16 | ALopetegui | Steps to Reproduce Updated | bug_revision_view_page.php?rev_id=22136#r22136 |
2021-02-22 10:44 | rafaroda | Tag Attached: NOR | |
2021-02-22 10:46 | rafaroda | Relationship added | related to 0045919 |
2021-02-22 10:47 | rafaroda | Relationship added | related to 0044911 |
2021-02-22 10:47 | rafaroda | Relationship added | related to 0045055 |
2021-02-22 10:47 | rafaroda | Relationship added | related to 0045144 |
2021-02-22 10:48 | rafaroda | Relationship added | related to 0045467 |
2021-02-22 15:01 | shuehner | Note Added: 0126272 | |
2021-02-22 15:02 | shuehner | Issue Monitored: shuehner | |
2021-02-24 09:53 | rafaroda | Resolution time | 1617400800 => 1614726000 |
2021-03-01 07:23 | alostale | Note Added: 0126393 | |
2021-03-01 07:24 | alostale | Resolution time | 1614726000 => |
2021-03-01 07:24 | alostale | Type | defect => design defect |
2021-03-01 10:12 | alostale | Relationship added | depends on 0045968 |
2021-03-01 10:13 | alostale | Note Edited: 0126393 | bug_revision_view_page.php?bugnote_id=0126393#r22155 |
2021-03-04 12:55 | rafaroda | Relationship added | related to 0045056 |
2021-08-27 15:35 | shuehner | Note Added: 0131408 | |
2021-08-27 15:45 | cberner | Note Added: 0131409 | |
2021-09-21 13:30 | alostale | Relationship added | depends on 0045969 |
2021-09-21 13:31 | alostale | Status | new => acknowledged |
2021-09-21 13:34 | alostale | Note Added: 0131952 | |
2021-09-21 13:35 | alostale | Relationship deleted | depends on 0045968 |
2022-02-01 08:07 | alostale | Assigned To | platform => Triage Platform Base |
Notes |
|
|
There is known cases (fixes several times) that this happens if the HQL of the columns is written poorly.
Typical cases:
- Either adding new from clause for main table again
- 2nd referencing to main table pk via "= object" and not ".id = object.id" which avoids the extra self-join.
Adding as a note as unclear if your concrete case if just +1 of that known topic or a seperate unavoidable one. |
|
|
(0126393)
|
alostale
|
2021-03-01 07:23
(edited on: 2021-03-01 10:13) |
|
|
|
|
To reproduce the following module can be used (to add column triggering the behavior):
org.openbravo.france.ecotax (adding columns)
org.openbravo.retail.france.ecotax (adding usage in ProductProperties) |
|
|
|
|
|
|
|