Project

General

Profile

Feature #16638

Updated by Toshi MARUYAMA over 7 years ago

#16091 closed, i open this new request 

 When exporting CSV export thousands of issues with tens of custom field export CSV is very very long. 

 When looking for generated sql request we can see there are thousands similar requests 

 <pre> 
 SELECT    `issues`.* FROM `issues`    WHERE `issues`.`id` = <issue id>  
 </pre> 
  

 => there is one of this request for each issue exported 

 Why not do one grouped request Like as request for custom fields 

 <pre> 
 => SELECT    `issues`.* FROM `issues`    WHERE `issues`.`id` IN( <issue id 1> ,<issue id 2>,<issue id ...>) 
 </pre> 

 ? 
 thanks 

Back