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
{{ message }}
This repository was archived by the owner on Feb 27, 2026. It is now read-only.
The trigger (trg_embed_chat_message) has been disabled on nova_memory to prevent replication failures. It was previously set to ENABLE REPLICA which masked the bug by only firing during replication (where it would crash the replication worker).
Impact
No automatic embedding placeholders created for agent_chat messages
Trigger disabled on nova_memory, dropped entirely on graybeard_memory
schema.sql contains the stale function definition
Fix
Update embed_chat_message() to match current memory_embeddings schema, or remove the trigger if chat embedding is handled differently now.
Problem
embed_chat_message()trigger function references columns that don't exist in the currentmemory_embeddingstable schema:content_hash,content,metadata,embeddingsource_type,source_id,content,embedding,confidence,last_confirmed_atThe trigger (
trg_embed_chat_message) has been disabled onnova_memoryto prevent replication failures. It was previously set toENABLE REPLICAwhich masked the bug by only firing during replication (where it would crash the replication worker).Impact
schema.sqlcontains the stale function definitionFix
Update
embed_chat_message()to match currentmemory_embeddingsschema, or remove the trigger if chat embedding is handled differently now.Related