Fix Empty Collection WHERE Filter Issue (#23086)
This commit is contained in:
@@ -111,7 +111,8 @@ class MessageService:
|
||||
|
||||
base_query = base_query.where(Message.conversation_id == conversation.id)
|
||||
|
||||
if include_ids is not None:
|
||||
# Check if include_ids is not None and not empty to avoid WHERE false condition
|
||||
if include_ids is not None and len(include_ids) > 0:
|
||||
base_query = base_query.where(Message.id.in_(include_ids))
|
||||
|
||||
if last_id:
|
||||
|
Reference in New Issue
Block a user