Merge branch 'master' into test6.9.18
Showing
1 changed file
with
5 additions
and
1 deletions
@@ -57,7 +57,11 @@ | @@ -57,7 +57,11 @@ | ||
57 | limit #{rowNo},#{limit} | 57 | limit #{rowNo},#{limit} |
58 | </select> | 58 | </select> |
59 | <select id="selectTotalInboxs" resultType="java.lang.Integer"> | 59 | <select id="selectTotalInboxs" resultType="java.lang.Integer"> |
60 | - select count(1) from ${tableName} where uid = #{uid} and is_del='N' | 60 | + select count(1) from ${tableName} |
61 | + <if test="type != null"> | ||
62 | + force index(`read`) | ||
63 | + </if> | ||
64 | + where uid = #{uid} and is_del='N' | ||
61 | <if test="type != null"> | 65 | <if test="type != null"> |
62 | and type=#{type} | 66 | and type=#{type} |
63 | </if> | 67 | </if> |
-
Please register or login to post a comment