GUACAMOLE-525: Fix up password history delete to be more compatible.

This commit is contained in:
Nick Couchman
2018-03-13 17:58:54 -04:00
parent cb580c4ae9
commit 62a706896a

View File

@@ -65,12 +65,11 @@
);
DELETE FROM [guacamole_user_password_history]
WHERE password_history_id IN (
SELECT password_history_id
WHERE password_history_id NOT IN (
SELECT TOP(#{maxHistorySize}) password_history_id
FROM [guacamole_user_password_history]
WHERE user_id = #{record.userID,jdbcType=INTEGER}
ORDER BY password_date DESC
OFFSET #{maxHistorySize}
);
</insert>