Fixes the duplicate index name in the example SQL script

The change is in the comments for the JdbcIndexedSessionRepository.
This commit is contained in:
Jivko Vantchev
2020-02-13 12:15:07 +01:00
committed by Eleftheria Stein-Kousathana
parent 7125aac567
commit 1a07ba5114

View File

@@ -103,7 +103,7 @@ import org.springframework.util.StringUtils;
* );
*
* CREATE UNIQUE INDEX SPRING_SESSION_IX1 ON SPRING_SESSION (SESSION_ID);
* CREATE INDEX SPRING_SESSION_IX1 ON SPRING_SESSION (EXPIRY_TIME);
* CREATE INDEX SPRING_SESSION_IX2 ON SPRING_SESSION (EXPIRY_TIME);
* CREATE INDEX SPRING_SESSION_IX3 ON SPRING_SESSION (PRINCIPAL_NAME);
*
* CREATE TABLE SPRING_SESSION_ATTRIBUTES (