File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
mappers/clickhouse/cancerstudy
org/cbioportal/legacy/persistence/mybatis Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8989 </if >
9090 <if test =" sortAndSearchCriteria.isSearchable()" >
9191 <foreach item =" item" collection =" sortAndSearchCriteria.searchTerm.split(' ')" open =" (" separator =" ) AND (" close =" )" >
92- cs.name like CONCAT('%', #{item}, '%') OR
93- cs.cancer_study_identifier like CONCAT('%', #{item}, '%') OR
94- type_of_cancer.name like CONCAT('%', #{item}, '%') OR
95- type_of_cancer.type_of_cancer_id like CONCAT('%', #{item}, '%')
92+ cs.name ilike CONCAT('%', #{item}, '%') OR
93+ cs.cancer_study_identifier ilike CONCAT('%', #{item}, '%') OR
94+ type_of_cancer.name ilike CONCAT('%', #{item}, '%') OR
95+ type_of_cancer.type_of_cancer_id ilike CONCAT('%', #{item}, '%')
9696 </foreach >
9797 </if >
9898 </where >
Original file line number Diff line number Diff line change 2626 </if >
2727 <if test =" keyword != null" >
2828 <foreach item =" item" collection =" keyword.split(' ')" open =" (" separator =" ) AND (" close =" )" >
29- gene.hugo_gene_symbol like CONCAT('%', #{item}, '%')
29+ gene.hugo_gene_symbol ilike CONCAT('%', #{item}, '%')
3030 </foreach >
3131 </if >
3232 </where >
You can’t perform that action at this time.
0 commit comments