GUAC-1101: Sort connection records in descending order.

This commit is contained in:
Michael Jumper
2015-02-25 15:02:00 -08:00
parent 57e3fb865e
commit fdab3c51b2

View File

@@ -49,8 +49,8 @@
WHERE
connection_id = #{identifier,jdbcType=VARCHAR}
ORDER BY
start_date,
end_date
start_date DESC,
end_date DESC
</select>