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
refactor(postgres): use palloc in TopMemoryContext for memory allocation
Replace malloc/free with palloc/pfree in the PostgreSQL dbmem_* abstraction layer. This integrates cloudsync memory management with PostgreSQL's memory context system.
Benefits:
- Memory tracking via MemoryContextStats() for debugging
- Automatic cleanup when PostgreSQL connection terminates
- Consistent memory management across the extension
- Respects PostgreSQL memory configuration and limits
0 commit comments