File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @grandlinex/bundle-postgresql" ,
3- "version" : " 1.2.1 " ,
3+ "version" : " 1.2.2 " ,
44 "description" : " " ,
55 "type" : " module" ,
66 "exports" : {
4646 "@grandlinex/core" : " 1.2.0" ,
4747 "pg" : " 8.16.3" ,
4848 "moment" : " 2.30.1" ,
49- "@types/pg" : " 8.15.5 "
49+ "@types/pg" : " 8.15.6 "
5050 },
5151 "devDependencies" : {
5252 "@types/jest" : " 29.5.14" ,
6767 "ts-jest" : " 29.3.4" ,
6868 "ts-loader" : " 9.5.2" ,
6969 "ts-node" : " 10.9.2" ,
70- "typedoc" : " 0.28.10 " ,
70+ "typedoc" : " 0.28.15 " ,
7171 "typescript" : " 5.9.2"
7272 },
7373 "repository" : {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ function aFilter<E extends CoreEntity>(
3737 }
3838 return [ `${ key } != ${ count . next ( ) } ` ] ;
3939 case 'like' :
40- return [ `${ key } like '%' || ${ count . next ( ) } || '%'` ] ;
40+ return [ `LOWER( ${ key } ) like '%' || LOWER( ${ count . next ( ) } ) || '%'` ] ;
4141 case 'smallerThan' :
4242 return [ `${ key } < ${ count . next ( ) } ` ] ;
4343 case 'greaterThan' :
You can’t perform that action at this time.
0 commit comments