|
|
@@ -674,6 +674,8 @@ class PostgresChunksHandler(Handler):
|
|
|
WHERE document_id = $2 AND NOT ($1 = ANY(collection_ids));
|
|
|
"""
|
|
|
logger.info(query)
|
|
|
+ logger.info(f"collection_id: {collection_id}")
|
|
|
+ logger.info(f"document_id: {document_id}")
|
|
|
return await self.connection_manager.execute_query(
|
|
|
query, (str(collection_id), str(document_id))
|
|
|
)
|