Skip to content

Commit

Permalink
fix:fix event type list error.
Browse files Browse the repository at this point in the history
  • Loading branch information
2011shenlin committed Sep 23, 2024
1 parent bcb2329 commit c9e5210
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@
WHERE account_id = #{accountId}
AND bus = #{eventBusName}
AND source = #{eventSourceName}
LIMIT #{nextToken} #{maxResults}
LIMIT #{nextToken} , #{maxResults}
</select>

<select id="getEventTypeCount" parameterType="java.util.Map" resultType="java.lang.Integer">
SELECT
<include refid="COLUMN_LIST"/>
count(1)
FROM
<include refid="TABLE_NAME"/>
WHERE account_id = #{accountId}
Expand Down

0 comments on commit c9e5210

Please sign in to comment.