Postgres custom parallel aggregation extension in C, shared state?

100 views Asked by At

I am creating a Postgres C extension that is a parallelized aggregate function. Is there any way I can share the state, or any any state/memory-block I choose, among all the workers? I dont want each worker process to have its own copy, I want a global copy for everyone.

Any help would be greatly appreciated.

0

There are 0 answers