Openbravo Issue Tracking System - Openbravo ERP | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
View Issue Details | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | |||||||||||||||||||||||||||||||||||||||||||||||||
0033705 | Openbravo ERP | A. Platform | public | 2016-08-12 17:24 | 2016-08-25 22:53 | |||||||||||||||||||||||||||||||||||||||||||||||||
Reporter | shuehner | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Assigned To | shuehner | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Priority | normal | Severity | minor | Reproducibility | have not tried | |||||||||||||||||||||||||||||||||||||||||||||||||
Status | closed | Resolution | fixed | |||||||||||||||||||||||||||||||||||||||||||||||||||
Platform | OS | 5 | OS Version | |||||||||||||||||||||||||||||||||||||||||||||||||||
Product Version | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Target Version | Fixed in Version | 3.0PR16Q4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Merge Request Status | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Review Assigned To | caristu | |||||||||||||||||||||||||||||||||||||||||||||||||||||
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 | 0033705: Double query in PricelistVersionFilterExpression (product selector) | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | The PriceListVersionFilterExpression has following code which does 2 db queries OBCriteria<PriceListVersion> plVersionCrit = OBDal.getInstance().createCriteria( PriceListVersion.class); plVersionCrit.add(Restrictions.eq(PriceListVersion.PROPERTY_PRICELIST, priceList)); plVersionCrit.add(Restrictions.le(PriceListVersion.PROPERTY_VALIDFROMDATE, date)); if (plVersionCrit.count() > 0) { plVersionCrit.addOrderBy(PriceListVersion.PROPERTY_VALIDFROMDATE, false); return plVersionCrit.list().get(0); } Filter m_pricelist_version by m_pricelist_id and validfrom<='some value' First query does a count of matching rows. Then order by validfrom desc is added and a 2nd query is done to retrieve the 'newest' row. The count query is not really an optimization as it forces same effort on db. As there is a m_pricelist_id + name unique constraint those filter criteria combination is indexed anyway. Additionally that query should get a "limit 1" constraint as it only uses 1 row of result anyway. Without that and many pricelistversion matches the filter criteria lots of rows are loaded into memory without good reason. | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Steps To Reproduce | - | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Proposed Solution | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Additional Information | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Tags | Performance | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Relationships |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||
Attached Files | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Issue History | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Date Modified | Username | Field | Change | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-12 17:24 | shuehner | New Issue | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-12 17:24 | shuehner | Assigned To | => shuehner | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-12 17:24 | shuehner | Modules | => Core | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-12 17:24 | shuehner | Triggers an Emergency Pack | => No | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-12 17:24 | shuehner | Tag Attached: Performance | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:33 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:33 | hgbot | Note Added: 0089303 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:33 | hgbot | Status | new => resolved | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:33 | hgbot | Resolution | open => fixed | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:33 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/8057375243880a2830c0537f24d037f675879b66 [^] | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:34 | shuehner | Review Assigned To | => caristu | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-23 14:44 | shuehner | Relationship added | related to 0033767 | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-24 11:41 | shuehner | Relationship added | related to 0033790 | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-24 11:47 | shuehner | Relationship added | related to 0033791 | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 10:42 | caristu | Note Added: 0089382 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 10:42 | caristu | Status | resolved => closed | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 10:42 | caristu | Fixed in Version | => 3.0PR16Q4 | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 13:13 | caristu | Relationship added | related to 0033797 | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:17 | aferraz | Status | closed => new | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:17 | aferraz | Resolution | fixed => open | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:19 | aferraz | Fixed in Version | 3.0PR16Q4 => | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:25 | aferraz | Status | new => scheduled | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:26 | aferraz | Status | scheduled => resolved | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:26 | aferraz | Fixed in Version | => 3.0PR16Q4 | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:26 | aferraz | Resolution | open => fixed | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 14:26 | aferraz | Status | resolved => closed | |||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 15:11 | hgbot | Checkin | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 15:11 | hgbot | Note Added: 0089401 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 22:53 | hudsonbot | Checkin | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2016-08-25 22:53 | hudsonbot | Note Added: 0089417 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
2017-09-19 18:49 | markmm82 | Relationship added | related to 0036898 |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|