You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: memory/repository/spring-ai-model-chat-memory-repository-jdbc/src/main/java/org/springframework/ai/chat/memory/repository/jdbc/MysqlChatMemoryRepositoryDialect.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,4 +44,9 @@ public String getDeleteMessagesSql() {
44
44
return"DELETE FROM SPRING_AI_CHAT_MEMORY WHERE conversation_id = ?";
45
45
}
46
46
47
+
@Override
48
+
publicStringgetDeleteMessageSql() {
49
+
return"DELETE FROM SPRING_AI_CHAT_MEMORY WHERE conversation_id = ? AND content = ? AND type = ?";
0 commit comments